Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
CompilerProperties.hpp
1#pragma once
2
3#include <vector>
4#include <string>
5#include "../Settings/BaseSettingsPage.hpp"
6
7namespace Grindstone {
8 namespace Editor {
9 namespace ImguiEditor {
10 namespace Settings {
12 public:
13 void Open();
14 void Render();
15 void WriteFile();
16 private:
17 std::vector<std::string> preprocessorDefinitions;
18 };
19 }
20 }
21 }
22}