1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-11 13:07:45 +00:00
sapphire/src/world/Actor/Npc.h
2020-03-01 11:58:26 +11:00

31 lines
352 B
C++

#ifndef _NPC_H_
#define _NPC_H_
#include <Common.h>
#include "Forwards.h"
#include "Chara.h"
#include <set>
#include <map>
#include <queue>
namespace Sapphire::Entity
{
/*!
\class Npc
\brief Base class for all Npcs
*/
class Npc : public Chara
{
public:
Npc( Common::ObjKind type );
virtual ~Npc() override;
};
}
#endif