NavmeshComponent.cs 304 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace ET
  4. {
  5. [ComponentOf(typeof(Scene))]
  6. public class NavmeshComponent: Entity, IAwake
  7. {
  8. public static NavmeshComponent Instance;
  9. public Dictionary<string, long> Navmeshs = new Dictionary<string, long>();
  10. }
  11. }