1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-12 21:47:45 +00:00
sapphire/src/world/Actor/Npc.h

32 lines
352 B
C
Raw Normal View History

#ifndef _NPC_H_
#define _NPC_H_
#include <Common.h>
#include "Forwards.h"
#include "Chara.h"
#include <set>
#include <map>
#include <queue>
namespace Sapphire::Entity
2018-10-28 21:53:21 +01:00
{
2018-10-28 21:53:21 +01:00
/*!
\class Npc
\brief Base class for all Npcs
2018-10-28 21:53:21 +01:00
*/
class Npc : public Chara
{
2018-10-28 21:53:21 +01:00
public:
2020-03-01 01:00:57 +11:00
Npc( Common::ObjKind type );
2018-10-28 21:53:21 +01:00
virtual ~Npc() override;
2018-10-28 21:53:21 +01:00
};
}
#endif