mirror of
https://git.planet-casio.com/Slyvtt/Collab_RPG.git
synced 2025-01-01 06:23:40 +01:00
15 lines
243 B
C
15 lines
243 B
C
|
#ifndef DIALOG_H
|
||
|
#define DIALOG_H
|
||
|
|
||
|
#include <gint/display.h>
|
||
|
#include <string.h>
|
||
|
#include "game.h"
|
||
|
#include "map.h"
|
||
|
|
||
|
#define F_WIDTH (32*PXSIZE)
|
||
|
#define F_HEIGHT (32*PXSIZE)
|
||
|
|
||
|
void showtext(Game *game, bopti_image_t *face, char *text);
|
||
|
|
||
|
#endif
|