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

AgConfig.cs 433B

1234567891011121314151617181920
  1. namespace uqac_ia_aspirobot.Agent
  2. {
  3. public class AgConfig
  4. {
  5. public bool AutoAdjustSleepTime { get; set; }
  6. public int SleepTime { get; set; }
  7. public int StartX { get; set; }
  8. public int StartY { get; set; }
  9. public void CopyTo(AgConfig other)
  10. {
  11. other.SleepTime = SleepTime;
  12. other.StartX = StartX;
  13. other.StartY = StartY;
  14. }
  15. }
  16. }