15 lines
197 B
C++
15 lines
197 B
C++
#pragma once
|
|
|
|
#include "GasaCharacter.h"
|
|
|
|
#include "PlayerCharacter.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class GASA_API APlayerCharacter : public AGasaCharacter
|
|
{
|
|
GENERATED_BODY()
|
|
public:
|
|
|
|
|
|
};
|