18. ABC & AS

This commit is contained in:
2024-04-13 10:19:45 -04:00
parent cfc3c3291b
commit 70d51d869c
13 changed files with 76 additions and 4 deletions

View File

@ -1,2 +0,0 @@
#include "GasaGameplayTags.h"

View File

@ -1,3 +0,0 @@
#pragma once
#include "NativeGameplayTags.h"

View File

@ -0,0 +1,7 @@
#include "GasaPlayerState.h"
AGasaPlayerState::AGasaPlayerState()
{
// Replication
NetUpdateFrequency = 100.f;
}

View File

@ -0,0 +1,13 @@
#pragma once
#include "GameFramework/PlayerState.h"
#include "GasaPlayerState.generated.h"
UCLASS(Blueprintable)
class GASA_API AGasaPlayerState : public APlayerState
{
GENERATED_BODY()
public:
AGasaPlayerState();
};