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

@ -0,0 +1 @@
#include "GasaAbilitySystemComponent.h"

View File

@ -0,0 +1,12 @@
#pragma once
#include "AbilitySystemComponent.h"
#include "GasaAbilitySystemComponent.generated.h"
UCLASS()
class GASA_API UGasaAbilitySystemComp : public UAbilitySystemComponent
{
GENERATED_BODY()
public:
};

View File

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

View File

@ -0,0 +1,15 @@
#pragma once
#include "AttributeSet.h"
#include "GasaAttributeSet.generated.h"
UCLASS()
class GASA_API UGasaAttributeSet : public UAttributeSet
{
GENERATED_BODY()
public:
};