PersonalBlackboard.cs 230 B

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