2023-02-24 22:09:07 +01:00
|
|
|
#include "PlayView.h"
|
|
|
|
|
#include "Window/Window.h"
|
|
|
|
|
|
|
|
|
|
using namespace Seele;
|
|
|
|
|
using namespace Seele::Editor;
|
|
|
|
|
|
|
|
|
|
PlayView::PlayView(Gfx::PGraphics graphics, PWindow window, const ViewportCreateInfo& createInfo, std::string dllPath)
|
2023-11-06 14:47:21 +01:00
|
|
|
: GameView(graphics, window, createInfo, dllPath)
|
2023-02-24 22:09:07 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PlayView::~PlayView()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PlayView::beginUpdate()
|
|
|
|
|
{
|
|
|
|
|
GameView::beginUpdate();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PlayView::update()
|
|
|
|
|
{
|
|
|
|
|
GameView::update();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PlayView::commitUpdate()
|
|
|
|
|
{
|
|
|
|
|
GameView::commitUpdate();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PlayView::prepareRender()
|
|
|
|
|
{
|
|
|
|
|
GameView::prepareRender();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PlayView::render()
|
|
|
|
|
{
|
|
|
|
|
GameView::render();
|
|
|
|
|
}
|