diff options
Diffstat (limited to 'src/game-server/npc.h')
-rw-r--r-- | src/game-server/npc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game-server/npc.h b/src/game-server/npc.h index 63d4ee8b..98fbd64d 100644 --- a/src/game-server/npc.h +++ b/src/game-server/npc.h @@ -88,22 +88,22 @@ namespace Npc { /** * Starts a conversation with the NPC. */ -void start(Being *npc, Being *ch); +void start(Entity *npc, Entity *ch); /** * Resumes an NPC conversation. */ -void resume(Being *ch); +void resume(Entity *ch); /** * The player has made a choice or entered an integer. */ -void integerReceived(Being *ch, int value); +void integerReceived(Entity *ch, int value); /** * The player has entered an string. */ -void stringReceived(Being *ch, const std::string &value); +void stringReceived(Entity *ch, const std::string &value); } // namespace Npc |