mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 00:01:37 -07:00
12 lines
174 B
C++
12 lines
174 B
C++
#pragma once
|
|
|
|
#include "CogSampleGameInstance.generated.h"
|
|
|
|
UCLASS()
|
|
class UCogSampleGameInstance : public UGameInstance
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
void Init() override;
|
|
};
|