Changeset 2009 for trunk/src/input/input.h
- Timestamp:
- Oct 12, 2012, 1:04:13 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/input/input.h
r1897 r2009 23 23 24 24 #include "lol/math/vector.h" 25 #include "input/keyboard.h" 25 26 #include "input/stick.h" 26 27 … … 433 434 434 435 /* These methods are called by the underlying input listeners */ 436 /* FIXME: this should disappear and be replaced by an input 437 * system that abstracts mice */ 435 438 static void SetMousePos(ivec2 coord); 436 439 static void SetMouseButton(int index); 437 440 static void UnsetMouseButton(int index); 438 441 442 /* Keyboard handling */ 443 static Keyboard *CreateKeyboard(); 444 static void DestroyKeyboard(Keyboard *keyboard); 445 446 static Keyboard *TrackKeyboard(int desired); 447 static void UntrackKeyboard(Keyboard *keyboard); 448 439 449 /* Joystick handling */ 440 450 static Stick *CreateStick();
Note: See TracChangeset
for help on using the changeset viewer.