選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }