1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-10 04:37:45 +00:00
sapphire/src/world/Actor/Npc.cpp

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()
{
}