GameObjects

Began to add GameObjects, starting with the player.
This commit is contained in:
onTheZero
2025-08-13 00:59:03 -04:00
parent 237272c17b
commit 4bf6b02255
37 changed files with 2640 additions and 222 deletions

22
PlayerInputComponent.h Normal file
View File

@@ -0,0 +1,22 @@
#pragma once
#include <InputComponent.h>
enum EInputDirection
{
FORWARD,
BACKWARD,
LEFT,
RIGHT
};
class PlayerInputComponent : public InputComponent
{
private:
public:
virtual void Update(float deltaTime)
{
}
};