28 lines
353 B
C
28 lines
353 B
C
|
#ifndef EDITOR_H
|
||
|
#define EDITOR_H
|
||
|
|
||
|
#include "Engine.h"
|
||
|
#include "UI.h"
|
||
|
|
||
|
class Editor
|
||
|
{
|
||
|
public:
|
||
|
Editor();
|
||
|
~Editor();
|
||
|
|
||
|
void Initialize();
|
||
|
void Run();
|
||
|
void Shutdown();
|
||
|
|
||
|
GLFWwindow* GetWindow() const;
|
||
|
|
||
|
private:
|
||
|
GLFWwindow* window;
|
||
|
Engine engine;
|
||
|
UI ui;
|
||
|
|
||
|
void InitializeWindow();
|
||
|
void InitializeImGui();
|
||
|
};
|
||
|
|
||
|
#endif
|