using System; using System.Collections.Generic; using System.Text; namespace ET { public class MainStoryMonsterAIComponent : Entity { public bool CanAtk; public List Units = new List(); public readonly long MonsterCoolTime = 3500; } }