Files
Stand/Stand/FiberPool.hpp
expvintl ce19babcf4 init
2024-10-16 11:20:42 +08:00

13 lines
160 B
C++

#pragma once
#include <functional>
namespace Stand
{
struct FiberPool
{
static void queueJob(std::function<void()>&& func);
static void onTick();
};
}