Changes in game-gui.hpp [a0da009:0e09340] in opengl-game
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
game-gui.hpp
ra0da009 r0e09340 4 4 #include <string> 5 5 #include <vector> 6 7 // TODO: Remove the line below once the couts in the game-gui-* files are moved 8 #include <iostream> 6 9 7 10 #ifdef GAMEGUI_INCLUDE_VULKAN … … 18 21 UI_EVENT_MOUSEBUTTONDOWN, 19 22 UI_EVENT_MOUSEBUTTONUP, 20 UI_EVENT_MOUSEMOTION, 21 UI_EVENT_UNKNOWN 23 UI_EVENT_MOUSEMOTION 22 24 }; 23 25 … … 33 35 struct MouseEvent { 34 36 EventType type; 35 /*36 int button;37 int action;38 int x;39 int y;40 */41 };42 43 struct UnknownEvent {44 EventType type;45 unsigned int eventType;46 37 }; 47 38 … … 51 42 KeyEvent key; 52 43 MouseEvent mouse; 53 UnknownEvent unknown;54 44 }; 45 46 /* 47 struct MouseEvent { 48 int button; 49 int action; 50 int x; 51 int y; 52 }; 53 */ 55 54 56 55 class GameGui {
Note:
See TracChangeset
for help on using the changeset viewer.