mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-10 04:37:45 +00:00
23 lines
505 B
C++
23 lines
505 B
C++
#include <Network/PacketContainer.h>
|
|
#include <Exd/ExdData.h>
|
|
#include "Action/Action.h"
|
|
#include "Territory/Territory.h"
|
|
#include "Network/PacketWrappers/UpdateHpMpTpPacket.h"
|
|
|
|
#include "WorldServer.h"
|
|
#include "Player.h"
|
|
#include "Npc.h"
|
|
#include "Common.h"
|
|
|
|
using namespace Sapphire::Common;
|
|
using namespace Sapphire::Network::Packets;
|
|
using namespace Sapphire::Network::Packets::WorldPackets::Server;
|
|
|
|
Sapphire::Entity::Npc::Npc( ObjKind type ) : Chara( type )
|
|
{
|
|
|
|
}
|
|
|
|
Sapphire::Entity::Npc::~Npc()
|
|
{
|
|
}
|