Close we are CLOSE

This commit is contained in:
2026-02-13 22:19:55 -05:00
parent bdd9b7bed8
commit 6cb3c2e53f
5 changed files with 120 additions and 29 deletions

View File

@@ -9,8 +9,8 @@ public abstract partial class Docker
internal virtual void ChainUpdate(GameTime __gameTime) { foreach (Behavior component in _behaviors) { component.Update(__gameTime); } }
internal virtual void ChainDraw(GameTime __gameTime) { foreach (Behavior component in _behaviors) { component.Draw(__gameTime); } }
internal virtual void ChainUpdate() { foreach (Behavior component in _behaviors) { component.Update(); } }
internal virtual void ChainDraw() { foreach (Behavior component in _behaviors) { component.Draw(); } }