Changed V7 to No V7

This commit is contained in:
2023-06-09 14:36:47 -04:00
parent 7fb8c5fefa
commit a436c20037
21 changed files with 27 additions and 65 deletions

View 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");
}