-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbackground.h
More file actions
31 lines (24 loc) · 749 Bytes
/
Copy pathbackground.h
File metadata and controls
31 lines (24 loc) · 749 Bytes
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
// background.h
#ifndef BACKGROUND_H
#define BACKGROUND_H
#include "vga.h"
// Images
extern unsigned char test1[RES_Y][RES_X];
extern unsigned char Bliss[RES_Y][RES_X];
extern unsigned char KTH[RES_Y][RES_X];
extern unsigned char Icecream[RES_Y][RES_X];
// Sprites
extern const unsigned char arrowSprite[20][20];
extern const unsigned char handSprite[20][20];
// Backgrounds
// Stylized
extern const unsigned char mainMenuStyle[RES_Y][RES_X];
extern const unsigned char processMenuStyle[RES_Y][RES_X];
extern const unsigned char uploadMenuStyle[RES_Y][RES_X];
// Original
/*
extern const unsigned char mainMenu[RES_Y][RES_X];
extern const unsigned char ProcessMenu[RES_Y][RES_X];
extern const unsigned char UploadMenu[RES_Y][RES_X];
*/
#endif