using System; using System.Collections.Generic; namespace ET { public class AIComponent:Entity { public List aiLists = new(); public AINode current; public ETCancellationToken cancelToken; public long TimerId; public Dictionary aiData=new(); } }