Commit most of the source code

This commit is contained in:
2023-06-08 17:10:14 -04:00
parent 1e96e72a6e
commit 7fb8c5fefa
291 changed files with 1411 additions and 0 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");
}