NavmeshComponent.cs 439 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace ET
  4. {
  5. [ComponentOf(typeof(Scene))]
  6. public class NavmeshComponent: Entity, IAwake
  7. {
  8. [StaticField]
  9. public static NavmeshComponent Instance;
  10. public struct RecastFileLoader
  11. {
  12. public string Name { get; set; }
  13. }
  14. public Dictionary<string, long> Navmeshs = new Dictionary<string, long>();
  15. }
  16. }