Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
Platforms.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 {
11 class Platforms : public BasePage {
12 public:
13 Platforms();
14 virtual void Open() override;
15 virtual void Render() override;
16 private:
17 void WriteFile();
18 std::vector<BasePage*> platformPages;
19 };
20 }
21 }
22 }
23}