#include "GameViewPanel.h" #include "UI/UI.h" #include namespace XCEngine { namespace Editor { GameViewPanel::GameViewPanel() : Panel("Game") {} void GameViewPanel::Render() { UI::PanelWindowScope panel(m_name.c_str()); (void)panel; } } }