Files
XCEngine/editor/src/panels/GameViewPanel.h

17 lines
187 B
C
Raw Normal View History

#pragma once
#include "Panel.h"
namespace UI {
class GameViewPanel : public Panel {
public:
GameViewPanel();
void Render() override;
private:
void RenderGameView();
};
}