UE5_StaticMesh_Gen_Build_MD.../Source/SMC_Build/SMCGameInstance.h

22 lines
355 B
C
Raw Normal View History

2021-06-30 17:11:29 +08:00
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "SMCGameInstance.generated.h"
/**
*
*/
UCLASS()
class SMC_BUILD_API USMCGameInstance : public UGameInstance
{
GENERATED_BODY()
public:
virtual void Shutdown() override;
protected:
virtual void OnStart() override;
};