14 lines
308 B
C++
14 lines
308 B
C++
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||
|
|
|
||
|
|
|
||
|
|
#include "GameInstanceV7.h"
|
||
|
|
|
||
|
|
|
||
|
|
static void printq(const char* msg) {
|
||
|
|
if (GEngine)
|
||
|
|
GEngine->AddOnScreenDebugMessage(-1, 15.0f, FColor::Yellow, FString(msg));
|
||
|
|
}
|
||
|
|
|
||
|
|
void UGameInstanceV7::Init() {
|
||
|
|
printq("In GameInstance Init");
|
||
|
|
}
|