-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinal_project_images.h
executable file
·58 lines (45 loc) · 1.27 KB
/
final_project_images.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
#ifndef __FINAL_PROJECT_IMAGES_H__
#define __FINAL_PROJECT_IMAGES_H__
#include <stdint.h>
#include <stdio.h>
extern const uint8_t lava_image[];
extern const uint8_t ball_image[];
extern const uint8_t small_fire1_image[];
extern const uint8_t small_fire2_image[];
extern const uint8_t main_menu[];
extern const uint8_t winzone_image[];
extern const uint8_t grass_image[];
extern const uint8_t title_image[];
extern const uint8_t besttime_image[];
extern const uint8_t enter_image[];
extern const uint8_t play_image[];
extern const uint8_t burnt_image[];
extern const uint8_t fire1_image[];
extern const uint8_t fire2_image[];
extern const uint8_t reset_image[];
extern const uint8_t star_image[];
extern const uint8_t success_image[];
extern const uint8_t time_image[];
#define IMG_WIDTH 16
#define IMG_HEIGHT 16
#define TITLE_WIDTH 210
#define TITLE_HEIGHT 52
#define BEST_TIME_W 110
#define BEST_TIME_H 21
#define ENTER_W 190
#define ENTER_H 16
#define PLAY_W 188
#define PLAY_H 48
#define BURNT_W 166
#define BURNT_H 68
#define FIRE_W 58
#define FIRE_H 76
#define RESET_W 140
#define RESET_H 20
#define STAR_W 58
#define STAR_H 58
#define SUCCESS_W 196
#define SUCCESS_H 42
#define TIME_W 168
#define TIME_H 20
#endif