mirror of https://github.com/AxioDL/metaforce.git
17 lines
219 B
C++
17 lines
219 B
C++
|
#include "GameMode.hpp"
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
void GameMode::think()
|
||
|
{
|
||
|
ViewerSpace::think();
|
||
|
}
|
||
|
|
||
|
void GameMode::View::draw(boo::IGraphicsCommandQueue *gfxQ)
|
||
|
{
|
||
|
if (m_gMode.m_main)
|
||
|
m_gMode.m_main->Draw();
|
||
|
}
|
||
|
|
||
|
}
|