Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
BuildPopup.hpp
1#pragma once
2
3#include <thread>
4#include <Editor/BuildProcess.hpp>
5
6namespace Grindstone::Editor::ImguiEditor {
7 class BuildPopup {
8 public:
9 void StartBuild();
10 void Render();
11
12 private:
13
14 bool isCompilingAssets;
16 std::thread buildThread;
17 };
18}
Definition BuildProcess.hpp:8