mirror of
https://github.com/ZDoom/ZDRay.git
synced 2025-02-07 06:51:16 +00:00
10 lines
133 B
C++
10 lines
133 B
C++
|
|
#pragma once
|
|
|
|
#include <functional>
|
|
|
|
class Worker
|
|
{
|
|
public:
|
|
static void RunJob(int count, std::function<void(int i)> callback);
|
|
};
|