17 lines
416 B
C++
17 lines
416 B
C++
// © 2024 Long Ly. All rights reserved. Any unauthorized use, reproduction, or distribution of this trademark is strictly prohibited and may result in legal action.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "ModularGameplayActors/OLSModularGameState.h"
|
|
#include "OLSGameState.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS(Config = Game)
|
|
class OLS_API AOLSGameState : public AOLSModularGameState
|
|
{
|
|
GENERATED_BODY()
|
|
};
|