2024-08-22 16:04:15 +00:00
|
|
|
#pragma once
|
2024-07-30 16:57:32 +00:00
|
|
|
|
2024-08-01 23:32:51 +00:00
|
|
|
#define GLFW_INCLUDE_NONE
|
2024-07-30 16:57:32 +00:00
|
|
|
#include "Engine.h"
|
2024-11-22 00:37:06 +00:00
|
|
|
#include "GUI.h"
|
2024-07-30 16:57:32 +00:00
|
|
|
|
|
|
|
class Editor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Editor();
|
|
|
|
~Editor();
|
|
|
|
|
2024-08-01 23:32:51 +00:00
|
|
|
static void Init();
|
|
|
|
static void Run();
|
|
|
|
static void Shutdown();
|
2024-07-30 16:57:32 +00:00
|
|
|
|
2024-11-22 00:37:06 +00:00
|
|
|
static Editor* GetInstance();
|
|
|
|
static Engine* GetEngine();
|
|
|
|
|
2024-07-30 16:57:32 +00:00
|
|
|
private:
|
2024-11-22 00:37:06 +00:00
|
|
|
static Editor* s_Instance;
|
|
|
|
static Engine* s_Engine;
|
2024-08-22 16:04:15 +00:00
|
|
|
};
|