| 122 | }; |
| 123 | |
| 124 | class InputManager{ |
| 125 | protected: |
| 126 | WMInstance* wm; |
| 127 | |
| 128 | public: |
| 129 | MouseState mouse = {{100, 100}, false, false, false}; |
| 130 | KeyboardState keyboard = {false, false, false, false}; |
| 131 | |
| 132 | InputManager(WMInstance* wm); |
| 133 | void Poll(); |
| 134 | }; |
| 135 | |
| 136 | class CompositorInstance{ |
| 137 | protected: |