mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-09 20:27:45 +00:00
22 lines
294 B
C
22 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;
|
||
|
};
|
||
|
|
||
|
}
|