UnitPathComponent.cs 122 B

123456789
  1. using UnityEngine;
  2. namespace ET
  3. {
  4. public class UnitPathComponent: Entity
  5. {
  6. public Vector3 Target;
  7. }
  8. }