Commit most of the source code
This commit is contained in:
17
Source/IntegrationV7/MyLuprexGameStateBase.cpp
Normal file
17
Source/IntegrationV7/MyLuprexGameStateBase.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
|
||||
#include "MyLuprexGameStateBase.h"
|
||||
|
||||
static void printq(const char* msg) {
|
||||
if (GEngine)
|
||||
GEngine->AddOnScreenDebugMessage(-1, 15.0f, FColor::Yellow, FString(msg));
|
||||
}
|
||||
|
||||
void AMyLuprexGameStateBase::Tick(float DeltaSeconds) {
|
||||
printq("Tick");
|
||||
}
|
||||
|
||||
void AMyLuprexGameStateBase::BeginPlay() {
|
||||
printq("AMyLuprexGameStateBase OK");
|
||||
}
|
||||
Reference in New Issue
Block a user