using Godot; using Milimoe.FunGame.Core.Entity; namespace Milimoe.GodotGame { public partial class EnemyBody : CharacterBody2D { [Export] public bool Enabled { get; set; } = true; [Export] public bool Dead { get; set; } = false; public Character[] Characters { get; set; } = []; } }