| 1803 | } |
| 1804 | |
| 1805 | Gui::Window::Window(Gui* pGui, const char* name, uint2 size, uint2 pos, Gui::WindowFlags flags) |
| 1806 | { |
| 1807 | bool open = true; |
| 1808 | if (pGui->mpWrapper->pushWindow(name, open, size, pos, flags)) |
| 1809 | mpGui = pGui; |
| 1810 | } |
| 1811 | |
| 1812 | Gui::Window::Window(Gui* pGui, const char* name, bool& open, uint2 size, uint2 pos, Gui::WindowFlags flags) |
| 1813 | { |
nothing calls this directly
no test coverage detected