Files
2023-04-23 21:57:20 +08:00

10 lines
149 B
C++

#include "threadpool.h"
namespace engine
{
ThreadPool* ThreadPool::getDefault()
{
static ThreadPool threadpool(true);
return &threadpool;
}
}