14 lines
225 B
C
14 lines
225 B
C
|
#pragma once
|
|||
|
|
|||
|
#include "GameFramework/PlayerState.h"
|
|||
|
|
|||
|
#include "GasaPlayerState.generated.h"
|
|||
|
|
|||
|
UCLASS(Blueprintable)
|
|||
|
class GASA_API AGasaPlayerState : public APlayerState
|
|||
|
{
|
|||
|
GENERATED_BODY()
|
|||
|
public:
|
|||
|
AGasaPlayerState();
|
|||
|
};
|