1
0
Fork 0
Collab_RPG-affichage-dialogues/src/npc.h

19 lines
218 B
C

#ifndef NPC_H
#define NPC_H
#include <stdbool.h>
#include "game.h"
#include "memory.h"
/* Draws the player player. This function should be called after drawing the
* map! */
void npc_draw(Game *game);
#endif