kolibrios-gitea/programs/games/marblematch3/game/rsgametext.h
alpine c5b22e42d3 Marble Match-3 game release candidate
git-svn-id: svn://kolibrios.org@5324 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-12-31 12:40:51 +00:00

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