tlac: rename DrawSprites stuff to Draw2D, use a better hook for it

This commit is contained in:
somewhatlurker
2019-10-22 00:56:45 +11:00
parent a90ae09e11
commit 84352bbbfa
7 changed files with 14 additions and 15 deletions
@@ -143,11 +143,11 @@ namespace TLAC::Components
}
}
void ComponentsManager::UpdateDrawSprites()
void ComponentsManager::UpdateDraw2D()
{
for (auto& component : components)
{
component->UpdateDrawSprites();
component->UpdateDraw2D();
}
}