Subversion Repositories Kolibri OS

Rev

Rev 5237 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5237 Rev 5242
Line 3... Line 3...
3
 
3
 
Line 4... Line 4...
4
#include "rsgame.h"
4
#include "rsgame.h"
Line 5... Line 5...
5
 
5
 
6
#define GAME_COLORS_COUNT   8
6
#define GAME_COLORS_COUNT   8
7
 
7
 
8
#define GAME_COLOR_BLACK    0
8
//#define GAME_COLOR_BLACK    0
9
#define GAME_COLOR_WHITE    1
9
//#define GAME_COLOR_WHITE    1
10
#define GAME_COLOR_YELLOW   2
10
//#define GAME_COLOR_YELLOW   2
11
#define GAME_COLOR_RED      3
11
//#define GAME_COLOR_RED      3
12
#define GAME_COLOR_BLUE     4
12
//#define GAME_COLOR_BLUE     4
13
#define GAME_COLOR_ORANGE   5
13
//#define GAME_COLOR_ORANGE   5
14
#define GAME_COLOR_GRAY     6
14
//#define GAME_COLOR_GRAY     6
15
#define GAME_COLOR_GREEN    7
15
//#define GAME_COLOR_GREEN    7
16
 
16
//
17
#define GAME_FONT_DEFAULT   0
17
//#define GAME_FONT_DEFAULT   0
18
#define GAME_FONT_HEAVY     1
18
//#define GAME_FONT_HEAVY     1
19
#define GAME_FONT_TITLE     2
19
//#define GAME_FONT_TITLE     2
20
#define GAME_FONT_LIGHT     3
20
//#define GAME_FONT_LIGHT     3
21
 
21
//
22
#define GAME_ALIGN_LEFT     0
-
 
Line 23... Line 22...
23
#define GAME_ALIGN_CENTER   1
22
//#define GAME_ALIGN_LEFT     0
24
#define GAME_ALIGN_RIGHT    2
23
//#define GAME_ALIGN_CENTER   1
Line 25... Line 24...
25
 
24
//#define GAME_ALIGN_RIGHT    2
-
 
25
 
26
 
26
 
Line 27... Line 27...
27
 
27
void game_font_init();