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.

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