TheAtlasEngine
Loading...
Searching...
No Matches
dockspace.hpp
1
#pragma once
2
#include <GLFW/glfw3.h>
3
4
namespace
atlas::ui {
5
9
class
dockspace
{
10
public
:
11
dockspace
() =
default
;
12
13
void
fullscreen(
bool
p_fullscreen) {
14
m_fullscreen_enabled = p_fullscreen;
15
}
16
17
void
dockspace_open(
bool
p_dockspace_open) {
18
m_is_dockspace_open = p_dockspace_open;
19
}
20
21
void
begin();
22
23
void
end();
24
25
private
:
26
bool
m_fullscreen_enabled =
false
;
27
bool
m_is_dockspace_open =
false
;
28
};
29
};
atlas::ui::dockspace
dockspace window using imgui
Definition
dockspace.hpp:9
TheAtlasEngine
atlas
core
editor
dockspace.hpp
Generated by
1.9.8