27 lines
365 B
C++
27 lines
365 B
C++
#include "InspectorView.h"
|
|||
|
|
using namespace Seele;
|
||
|
|
|
||
|
|
InspectorView::InspectorView(Gfx::PGraphics graphics, PWindow window, const ViewportCreateInfo &createInfo)
|
||
|
|
: View(graphics, window, createInfo)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
InspectorView::~InspectorView()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
void InspectorView::beginFrame()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
void InspectorView::render()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
void InspectorView::endFrame()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|