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 dffc309857
commit 89c999afee
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();
}
}