18. ABC & AS

This commit is contained in:
2024-04-13 10:19:45 -04:00
parent 8c698a176b
commit e465749f9a
15 changed files with 81 additions and 6 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();
};