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
IInputComponent.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#define GLFW_INCLUDE_NONE
#include <GLFW/glfw3.h>
class IInputComponent
{
public:
IInputComponent(GLFWwindow* Window) : Window(Window) {};
virtual ~IInputComponent() {};
virtual void Update(float DeltaTime) = 0;
protected:
GLFWwindow* Window;
};