summaryrefslogtreecommitdiff
path: root/src/core.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core.hpp')
-rw-r--r--src/core.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core.hpp b/src/core.hpp
index 5a1556a..0830a49 100644
--- a/src/core.hpp
+++ b/src/core.hpp
@@ -41,7 +41,9 @@
#include <SDL2/SDL_mixer.h>
#include "command.hpp"
+#include "job_queue.hpp"
#include "log.hpp"
+#include "worker.hpp"
#include "vk/device.hpp"
#include "vk/graphics_pipeline_3d_layout.hpp"
@@ -64,6 +66,10 @@ struct cg_sCore
Log::Logger log;
+ JobQueue job_queue;
+ std::vector<Worker> workers;
+ std::vector<std::thread> threads;
+
mrb_state *mrb;
std::string game_file;