mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-26 22:37:45 +00:00
23 lines
364 B
C++
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;
|
|
};
|
|
|
|
}
|