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.

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