mirror of
https://git.planet-casio.com/Slyvtt/Collab_RPG.git
synced 2025-04-19 17:37:36 +02:00
18 lines
218 B
C
18 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
|
|
|