Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
IEditor.hpp
1#pragma once
2
3#include <string>
4
5namespace Grindstone {
6 namespace Editor {
7 class IEditor {
8 public:
9 virtual bool initialize() = 0;
10 virtual void update() = 0;
11 };
12 }
13}
Definition IEditor.hpp:7