mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-11 13:07:45 +00:00
31 lines
352 B
C++
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
|