Base character class
This commit is contained in:
parent
665ef9ef16
commit
76b2fc9b83
1
.gitignore
vendored
1
.gitignore
vendored
@ -14,3 +14,4 @@ Project/.vsconfig
|
||||
*.sln
|
||||
*.target
|
||||
*.modules
|
||||
Project/.idea
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6
Project/Source/Gasa/GasaCharacter.cpp
Normal file
6
Project/Source/Gasa/GasaCharacter.cpp
Normal file
@ -0,0 +1,6 @@
|
||||
#include "GasaCharacter.h"
|
||||
|
||||
void AGasaCharacter::BeginPlay()
|
||||
{
|
||||
Super::BeginPlay();
|
||||
}
|
16
Project/Source/Gasa/GasaCharacter.h
Normal file
16
Project/Source/Gasa/GasaCharacter.h
Normal file
@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
#include "GameFramework/Character.h"
|
||||
|
||||
#include "GasaCharacter.generated.h"
|
||||
|
||||
UCLASS(BlueprintType, Blueprintable)
|
||||
class GASA_API AGasaCharacter : public ACharacter
|
||||
{
|
||||
GENERATED_BODY()
|
||||
public:
|
||||
|
||||
#pragma region Actor
|
||||
void BeginPlay() override;
|
||||
#pragma endregion Actor
|
||||
};
|
Loading…
Reference in New Issue
Block a user