Removing terrain for now

This commit is contained in:
Dynamitos
2024-10-01 22:52:51 +02:00
parent a5694b838a
commit 5658fac224
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
namespace Seele {
class ThreadPool {
public:
ThreadPool(uint32 numWorkers = 1);
ThreadPool(uint32 numWorkers = std::thread::hardware_concurrency() - 2);
~ThreadPool();
void runAndWait(List<std::function<void()>> functions);
void runAsync(std::function<void()> func);