Add healing effect resource and integrate into game systems

This commit is contained in:
2025-10-29 02:27:50 +01:00
parent d046130f17
commit 853378c9c6
6 changed files with 18 additions and 5 deletions

View File

@@ -83,7 +83,8 @@ public partial class GamePresenter : Node
_world.RegisterSystem(new WeaponSystem());
_world.RegisterSystem(new ProjectileSystem());
_world.RegisterSystem(new ProjectileInitializationSystem(_world));
_world.RegisterSystem(new HealingSystem(_world));
_world.RegisterSystem(new DamageSystem(_world));
_world.RegisterSystem(new ProjectileCleanupSystem());
_world.RegisterSystem(new DestructionSystem());