mirror of
https://git.planet-casio.com/Slyvtt/Collab_RPG.git
synced 2025-01-04 07:53:39 +01:00
19 lines
218 B
C
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
|
||
|
|