2024-04-12 11:49:22 -07:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "GasaCharacter.h"
|
|
|
|
|
|
|
|
|
|
#include "PlayerCharacter.generated.h"
|
|
|
|
|
|
|
|
|
|
UCLASS(Blueprintable)
|
|
|
|
|
class GASA_API APlayerCharacter : public AGasaCharacter
|
|
|
|
|
{
|
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
public:
|
|
|
|
|
|
2024-04-12 19:05:09 -07:00
|
|
|
|
APlayerCharacter();
|
2024-04-12 11:49:22 -07:00
|
|
|
|
};
|