Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
BuildProcess.hpp
1#pragma once
2
3#include <atomic>
4#include <string>
5#include <mutex>
6
7namespace Grindstone::Editor {
9 std::atomic<float> progress;
10 std::string stageText;
11 std::string detailText;
12 std::mutex stringMutex;
13 };
14
15 void BuildGame(BuildProcessStats* buildProcessStats);
16}
Definition BuildProcess.hpp:8