2018-08-29 21:40:59 +02:00
|
|
|
#include <Network/PacketContainer.h>
|
2021-11-27 00:53:57 +01:00
|
|
|
#include <Exd/ExdData.h>
|
2018-08-29 21:40:59 +02:00
|
|
|
#include "Action/Action.h"
|
2019-07-21 22:33:33 +10:00
|
|
|
#include "Territory/Territory.h"
|
2018-08-29 21:40:59 +02:00
|
|
|
#include "Network/PacketWrappers/UpdateHpMpTpPacket.h"
|
|
|
|
|
2021-11-27 00:53:57 +01:00
|
|
|
#include "WorldServer.h"
|
2018-08-29 21:40:59 +02:00
|
|
|
#include "Player.h"
|
2018-08-29 22:03:10 +02:00
|
|
|
#include "Npc.h"
|
2018-08-29 21:40:59 +02:00
|
|
|
#include "Common.h"
|
|
|
|
|
2018-11-29 16:55:48 +01:00
|
|
|
using namespace Sapphire::Common;
|
|
|
|
using namespace Sapphire::Network::Packets;
|
2021-11-27 00:53:57 +01:00
|
|
|
using namespace Sapphire::Network::Packets::WorldPackets::Server;
|
2018-08-29 21:40:59 +02:00
|
|
|
|
2021-11-27 00:53:57 +01:00
|
|
|
Sapphire::Entity::Npc::Npc( ObjKind type ) : Chara( type )
|
2018-08-29 21:40:59 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-11-29 16:55:48 +01:00
|
|
|
Sapphire::Entity::Npc::~Npc()
|
2018-08-29 21:40:59 +02:00
|
|
|
{
|
|
|
|
}
|