ferx/editor/include/Editor.h

22 lines
274 B
C
Raw Normal View History

#ifndef EDITOR_H
#define EDITOR_H
#define GLFW_INCLUDE_NONE
#include "Engine.h"
#include "UI.h"
class Editor
{
public:
Editor();
~Editor();
static void Init();
static void Run();
static void Shutdown();
private:
void InitializeImGui();
};
#endif