Files
LearningOpenGL/IInputComponent.h
2025-08-15 16:12:18 -04:00

14 lines
264 B
C++

#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;
};