ferx/editor/include/Editor.h

23 lines
345 B
C
Raw Normal View History

#pragma once
#define GLFW_INCLUDE_NONE
#include "Engine.h"
2024-11-22 00:37:06 +00:00
#include "GUI.h"
class Editor
{
public:
Editor();
~Editor();
static void Init();
static void Run();
static void Shutdown();
2024-11-22 00:37:06 +00:00
static Editor* GetInstance();
static Engine* GetEngine();
private:
2024-11-22 00:37:06 +00:00
static Editor* s_Instance;
static Engine* s_Engine;
};