Renderer refactoring. WIP InputSystem.

This commit is contained in:
2014-03-07 02:28:19 +01:00
parent e65db077d5
commit b1f0bc7cce
8 changed files with 39 additions and 59 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ namespace Components
struct Input : Component
{
int KeyState[GLFW_KEY_LAST];
float MouseState[2];
int MouseState[GLFW_MOUSE_BUTTON_LAST];
float dX, dY;
};