|
|
@@ -0,0 +1,16 @@
|
|
|
+package crown.android;
|
|
|
+
|
|
|
+public class CrownEnum
|
|
|
+{
|
|
|
+ // OSEventType enum in OS.h
|
|
|
+ public static final int OSET_NONE = 0;
|
|
|
+ public static final int OSET_KEY_PRESS = 1;
|
|
|
+ public static final int OSET_KEY_RELEASE = 2;
|
|
|
+ public static final int OSET_BUTTON_PRESS = 3;
|
|
|
+ public static final int OSET_BUTTON_RELEASE = 4;
|
|
|
+ public static final int OSET_MOTION_NOTIFY = 5;
|
|
|
+ public static final int OSET_TOUCH_DOWN = 6;
|
|
|
+ public static final int OSET_TOUCH_MOVE = 7;
|
|
|
+ public static final int OSET_TOUCH_UP = 8;
|
|
|
+ public static final int OSET_ACCELEROMETER = 9;
|
|
|
+}
|