2024-07-30 16:57:32 +00:00
|
|
|
#ifndef EDITOR_H
|
|
|
|
#define EDITOR_H
|
|
|
|
|
2024-08-01 23:32:51 +00:00
|
|
|
#define GLFW_INCLUDE_NONE
|
2024-07-30 16:57:32 +00:00
|
|
|
#include "Engine.h"
|
|
|
|
#include "UI.h"
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
private:
|
|
|
|
void InitializeImGui();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|