1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 22:37:45 +00:00
sapphire/src/world/Task/RemoveBNpcTask.h
2022-01-20 22:42:26 +01:00

23 lines
364 B
C++

#pragma once
#include <cstdint>
#include <string>
#include <ForwardsZone.h>
#include "Task.h"
namespace Sapphire::World
{
class RemoveBNpcTask : public Task
{
public:
RemoveBNpcTask( uint64_t delayTime, Entity::BNpcPtr bnpc );
void onQueue() override;
void execute() override;
std::string toString() override;
private:
Entity::BNpcPtr m_pBNpc;
};
}