using System.Collections.Generic; using System.Threading; using UnityEngine; namespace ET { public class UnitPathComponent: Entity { public List Path = new List(); public Vector3 ServerPos; public ETCancellationToken ETCancellationToken; } }