You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AgState.cs 368B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using uqac_ia_aspirobot.Interfaces;
  4. namespace uqac_ia_aspirobot.Agent
  5. {
  6. public class AgState
  7. {
  8. public int ThinkTimeInterval { get; set; }
  9. public DateTime LastThinkTime { get; set; }
  10. public IList<IRoom> DustyRooms { get; set; }
  11. public IRoom Destination { get; set; }
  12. }
  13. }