mirror of
https://git.planet-casio.com/Slyvtt/Collab_RPG.git
synced 2024-12-29 13:03:43 +01:00
14 lines
243 B
C
14 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
|