85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
extern Uint16 picture_size;
extern int left_margin;
void draw_picture(int x,int y,Uint16 img);
void draw_text(int x,int y,const unsigned char*t,int bg,int fg);
void draw_cell(int x,int y);
const char*screen_prompt(const char*txt);
void load_pictures(void);
int scrollbar(int*cur,int page,int max,SDL_Event*ev,SDL_Rect*re);
// == class ==
#define CF_PLAYER 0x01
|
>
|
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
extern Uint16 picture_size;
extern int left_margin;
void draw_picture(int x,int y,Uint16 img);
void draw_text(int x,int y,const unsigned char*t,int bg,int fg);
void draw_cell(int x,int y);
const char*screen_prompt(const char*txt);
int screen_message(const char*txt);
void load_pictures(void);
int scrollbar(int*cur,int page,int max,SDL_Event*ev,SDL_Rect*re);
// == class ==
#define CF_PLAYER 0x01
|