Blackboard.cs 320 B

123456789101112131415161718
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. namespace EnemyAI
  4. {
  5. public class Blackboard
  6. {
  7. public bool Night
  8. {
  9. get;
  10. set;
  11. }
  12. public UnityEngine.AI.NavMeshAgent navMeshAgent;
  13. public UnityEngine.Vector3 PlayerPosition;
  14. }
  15. }