mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-24 11:53:29 +00:00
12 lines
237 B
C++
12 lines
237 B
C++
#include "GameMode.hpp"
|
|
|
|
namespace metaforce {
|
|
void GameMode::think() { ViewerSpace::think(); }
|
|
|
|
void GameMode::View::draw(boo::IGraphicsCommandQueue* gfxQ) {
|
|
if (m_gMode.m_main)
|
|
m_gMode.m_main->Draw();
|
|
}
|
|
|
|
} // namespace metaforce
|