-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGPalette.h
123 lines (102 loc) · 3.08 KB
/
GPalette.h
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
* Exported with nin10kit v1.0
* Time-stamp: Monday 11/07/2015, 19:16:05
*
* Image Information
* -----------------
* /home/wing/Desktop/hw10/frogD1.png 14@14
* /home/wing/Desktop/hw10/frogD2.png 14@14
* /home/wing/Desktop/hw10/frogD3.png 14@14
* /home/wing/Desktop/hw10/frogL1.png 14@14
* /home/wing/Desktop/hw10/frogL2.png 14@14
* /home/wing/Desktop/hw10/frogL3.png 14@14
* /home/wing/Desktop/hw10/frogR1.png 14@14
* /home/wing/Desktop/hw10/frogR2.png 14@14
* /home/wing/Desktop/hw10/frogR3.png 14@14
* /home/wing/Desktop/hw10/frogU1.png 14@14
* /home/wing/Desktop/hw10/frogU2.png 14@14
* /home/wing/Desktop/hw10/frogU3.png 14@14
* /home/wing/Desktop/hw10/frogBG.png 220@140
* /home/wing/Desktop/hw10/truck1Right.png 128@16
* /home/wing/Desktop/hw10/car1Right.png 16@10
* /home/wing/Desktop/hw10/crocodile.png 46@16
* /home/wing/Desktop/hw10/wood.png 42@12
*
* Quote/Fortune of the Day!
* -------------------------
*
* All bug reports / feature requests are to be sent to Brandon (bwhitehead0308@gmail.com)
*/
#ifndef GPALETTE_H
#define GPALETTE_H
extern const unsigned short GPalette_palette[256];
#define GPALETTE_PALETTE_SIZE 256
extern const unsigned short frogD1[98];
#define FROGD1_SIZE 98
#define FROGD1_WIDTH 14
#define FROGD1_HEIGHT 14
extern const unsigned short frogD2[98];
#define FROGD2_SIZE 98
#define FROGD2_WIDTH 14
#define FROGD2_HEIGHT 14
extern const unsigned short frogD3[98];
#define FROGD3_SIZE 98
#define FROGD3_WIDTH 14
#define FROGD3_HEIGHT 14
extern const unsigned short frogL1[98];
#define FROGL1_SIZE 98
#define FROGL1_WIDTH 14
#define FROGL1_HEIGHT 14
extern const unsigned short frogL2[98];
#define FROGL2_SIZE 98
#define FROGL2_WIDTH 14
#define FROGL2_HEIGHT 14
extern const unsigned short frogL3[98];
#define FROGL3_SIZE 98
#define FROGL3_WIDTH 14
#define FROGL3_HEIGHT 14
extern const unsigned short frogR1[98];
#define FROGR1_SIZE 98
#define FROGR1_WIDTH 14
#define FROGR1_HEIGHT 14
extern const unsigned short frogR2[98];
#define FROGR2_SIZE 98
#define FROGR2_WIDTH 14
#define FROGR2_HEIGHT 14
extern const unsigned short frogR3[98];
#define FROGR3_SIZE 98
#define FROGR3_WIDTH 14
#define FROGR3_HEIGHT 14
extern const unsigned short frogU1[98];
#define FROGU1_SIZE 98
#define FROGU1_WIDTH 14
#define FROGU1_HEIGHT 14
extern const unsigned short frogU2[98];
#define FROGU2_SIZE 98
#define FROGU2_WIDTH 14
#define FROGU2_HEIGHT 14
extern const unsigned short frogU3[98];
#define FROGU3_SIZE 98
#define FROGU3_WIDTH 14
#define FROGU3_HEIGHT 14
extern const unsigned short frogBG[15400];
#define FROGBG_SIZE 15400
#define FROGBG_WIDTH 220
#define FROGBG_HEIGHT 140
extern const unsigned short truck1Right[1024];
#define TRUCK1RIGHT_SIZE 1024
#define TRUCK1RIGHT_WIDTH 128
#define TRUCK1RIGHT_HEIGHT 16
extern const unsigned short car1Right[80];
#define CAR1RIGHT_SIZE 80
#define CAR1RIGHT_WIDTH 16
#define CAR1RIGHT_HEIGHT 10
extern const unsigned short crocodile[368];
#define CROCODILE_SIZE 368
#define CROCODILE_WIDTH 46
#define CROCODILE_HEIGHT 16
extern const unsigned short wood[252];
#define WOOD_SIZE 252
#define WOOD_WIDTH 42
#define WOOD_HEIGHT 12
#endif