osu-ds/source/System/GameBase.cpp
KonPet 183228e28e Change stuff to make it build
Removed the arm7 section
Changed the makefile to only use the arm9 stuff
Epicpkmn: Fix source/Graphics/GraphicsManager.cpp

Co-Authored-By: Pk11 <epicpkmn11@outlook.com>
Co-Authored-By: Kaisaan <34224128+Kaisaan@users.noreply.github.com>
2021-10-21 00:03:39 +02:00

16 lines
239 B
C++

#include "GameBase.h"
GameBase::GameBase()
{
BeatmapManager::BuildCollection();
//ChangeMode(MODE_PLAYER);
ChangeMode(MODE_SONGSELECT);
}
void GameBase::Update()
{
Mode::CurrentMode().HandleInput();
Mode::CurrentMode().Update();
}