Revert "removed null!"

This reverts commit 290f79afd4.
This commit is contained in:
2026-03-08 09:43:12 +01:00
parent 290f79afd4
commit c92eb19a1c
16 changed files with 151 additions and 151 deletions

View File

@@ -18,15 +18,15 @@ public partial class ForgeEntity : Node, IForgeEntity
[Export]
public ForgeTagContainer BaseTags { get; set; } = new();
public EntityAttributes Attributes { get; set; }
public EntityAttributes Attributes { get; set; } = null!;
public EntityTags Tags { get; set; }
public EntityTags Tags { get; set; } = null!;
public EffectsManager EffectsManager { get; set; }
public EffectsManager EffectsManager { get; set; } = null!;
public EntityAbilities Abilities { get; set; }
public EntityAbilities Abilities { get; set; } = null!;
public EventManager Events { get; set; }
public EventManager Events { get; set; } = null!;
public override void _Ready()
{