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::Editor::ImguiEditor::Settings {
9 public:
10 void Open();
11 void Render();
12 void Save();
13 void Reset();
14 private:
15 std::vector<std::string> preprocessorDefinitions;
16 };
17}