add pause menu (with one option)

this is pretty annoying becuase it requires drawing the overlay after drawing text..
it's probably not a bad idea to ship a new text renderer so some of the dodginess can be avoided
This commit is contained in:
somewhatlurker
2019-10-20 02:49:54 +11:00
parent d768fa40f3
commit 3c7768c147
11 changed files with 350 additions and 13 deletions
@@ -143,6 +143,14 @@ namespace TLAC::Components
}
}
void ComponentsManager::UpdateDrawSprites()
{
for (auto& component : components)
{
component->UpdateDrawSprites();
}
}
void ComponentsManager::UpdatePostDraw()
{
for (auto& component : components)