mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 08:02:23 -07:00
32ca4dc2ba
Fix Config saving not working
16 lines
269 B
C++
16 lines
269 B
C++
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "CogSampleGameInstance.generated.h"
|
|
|
|
class UCogSubsystem;
|
|
class UCogSampleAbilitySystemComponent;
|
|
|
|
UCLASS()
|
|
class UCogSampleGameInstance : public UGameInstance
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
virtual void Init() override;
|
|
};
|