-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKey.cs
57 lines (36 loc) · 822 Bytes
/
Key.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
public class Key
{
public static int NUM0;
public static int NUM1 = 1;
public static int NUM2 = 2;
public static int NUM3 = 3;
public static int NUM4 = 4;
public static int NUM5 = 5;
public static int NUM6 = 6;
public static int NUM7 = 7;
public static int NUM8 = 8;
public static int NUM9 = 9;
public static int STAR = 10;
public static int BOUND = 11;
public static int UP = 12;
public static int DOWN = 13;
public static int LEFT = 14;
public static int RIGHT = 15;
public static int FIRE = 16;
public static int LEFT_SOFTKEY = 17;
public static int RIGHT_SOFTKEY = 18;
public static int CLEAR = 19;
public static int BACK = 20;
public static void mapKeyPC()
{
if (Main.isPC)
{
NUM2 = 16;
NUM1 = 14;
NUM3 = 15;
NUM4 = 18;
NUM6 = 19;
NUM8 = 17;
}
}
}