diff options
Diffstat (limited to 'Runtime/Events/InputEvent.cpp')
-rw-r--r-- | Runtime/Events/InputEvent.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Runtime/Events/InputEvent.cpp b/Runtime/Events/InputEvent.cpp index ac41c94..e062bc2 100644 --- a/Runtime/Events/InputEvent.cpp +++ b/Runtime/Events/InputEvent.cpp @@ -1,12 +1,19 @@ #include "InputEvent.h" +InputEvent::InputEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) +{ + +} + void InputEvent::CastToTable(LuaBind::State& state) { lua_newtable(state); int table = state.GetTop(); + // "type" lua_pushnumber(state, type); lua_setfield(state, table, "type"); + // "mousePosition" -} +}
\ No newline at end of file |