forked from KolibriOS/kolibrios
c5b22e42d3
git-svn-id: svn://kolibrios.org@5324 a494cfbc-eb01-0410-851d-a64ba20cac60
18 lines
378 B
C
18 lines
378 B
C
#ifndef RS_GAMETEXT_H
|
|
#define RS_GAMETEXT_H
|
|
|
|
#include "rsgame.h"
|
|
|
|
#define GAME_COLORS_COUNT 8
|
|
|
|
|
|
|
|
void game_font_init();
|
|
void game_font_term();
|
|
|
|
void game_textout(int x, int y, int font_index, char* s);
|
|
void game_textout_at_center(int x, int y, int font_index, char *s);
|
|
void game_textout_adv(rs_texture_t *dest, int x, int y, int font_index, int draw_mode, char* s);
|
|
|
|
#endif
|