-
Notifications
You must be signed in to change notification settings - Fork 0
/
Attribute.java
45 lines (26 loc) · 907 Bytes
/
Attribute.java
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
import java.awt.Color;
public class Attribute {
public static int Y_SMALL_DIFF;
public static int X_SMALL_DIFF;
public static int MAX_X ;
public static int MAX_Y ;
public static int XBOX_SIZE ;
public static int XBOX_SIZE_PLUS = XBOX_SIZE+1 ;
public static int YBOX_SIZE ;
public static int YBOX_SIZE_PLUS = YBOX_SIZE+1 ;
public static Color TYPE2_COLOR = Color.gray ;
public static final int ROW_NUM = 20 ;
public static final int COL_NUM = 20;
public static int X_BOX_BEGIN ;
public static int Y_BOX_BEGIN ;
public static int PLAY_WIDTH ;
public static int PLAY_HEIGHT;
public static int X_SHOW_NEXT ;
public static int Y_SHOW_NEXT ;
public static int WIDTH_SHOW_NEXT;
public static int HEIGHT_SHOW_NEXT;
public static int X_SCORE_PLACE;
public static int Y_SCORE_PLACE;
public static int X_ENTERY ;
public static int Y_ENTERY ;
}