mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-09 20:08:57 +03:00
23 lines
357 B
C++
23 lines
357 B
C++
#pragma once
|
|
#include <src/Application/Layer.h>
|
|
|
|
namespace Nuake {
|
|
|
|
class EditorInterface;
|
|
|
|
}
|
|
|
|
class GizmoDrawer;
|
|
|
|
|
|
class EditorLayer : public Nuake::Layer
|
|
{
|
|
public:
|
|
virtual void OnAttach() override;
|
|
virtual void OnUpdate() override;
|
|
virtual void OnDetach() override;
|
|
|
|
private:
|
|
Nuake::EditorInterface* m_EditorInterface;
|
|
GizmoDrawer* m_GizmoDrawer;
|
|
}; |