Collab_RPG/src/dialogs.h

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