chore: updated engine to use the new events

This commit is contained in:
2025-05-31 00:34:27 +03:00
parent 0acd119099
commit 52682d42b6
10 changed files with 59 additions and 60 deletions

View File

@@ -48,11 +48,12 @@ public class GamePong : Game
{
// TODO: Add your initialization logic here
universe = new();
displayableCollector = new(universe);
displayableShapeCollector = new(universe);
universe.Initialize();
displayableCollector = new(universe);
displayableShapeCollector = new(universe);
base.Initialize();
}