using System.Collections.Generic; namespace ET.Client { [ComponentOf(typeof(Scene))] public class HeroComponent : Entity, IAwake, IDestroy { public Dictionary HeroMap = new(); } public struct HeroUpdatedEvent { public long HeroId; } public struct HeroListUpdatedEvent { public int Count; } }