1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-09 20:27:45 +00:00
sapphire/src/world/Task/TestTask.h

21 lines
294 B
C++

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