Vegastrike 0.5.1 rc1  1.0
Original sources for Vegastrike Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
in.h
Go to the documentation of this file.
1 #ifndef IN_H
2 #define IN_H
3 enum KBSTATE
4 {
5  UP,
6  DOWN,
10 };
11 
12 class KBData;
13 typedef void (*KBHandler)( const KBData&, KBSTATE );
14 
15 typedef void (*MouseHandler)( KBSTATE, int x, int y, int delx, int dely, int mod );
16 
17 #endif
18