Преглед изворни кода

CrownEnum added in android

mikymod пре 13 година
родитељ
комит
74f95369ba
1 измењених фајлова са 16 додато и 0 уклоњено
  1. 16 0
      android/src/crown/android/CrownEnum.java

+ 16 - 0
android/src/crown/android/CrownEnum.java

@@ -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; 
+}