Changes to player, and mesh renderer INCOMPLETE

This commit is contained in:
onTheZero
2025-08-15 16:12:18 -04:00
parent 4bf6b02255
commit 5201ca46ec
22 changed files with 3282 additions and 228 deletions

14
InputHandler.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include <InputCommand.h>
class InputHandler
{
public:
void HandleInput();
private:
Command* ButtonX;
Command* ButtonY;
Command* ButtonA;
Command* ButtonB;
};