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.

123456789101112131415161718192021222324252627
  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 float LowPerformance { get; set; }
  9. public int StartX { get; set; }
  10. public int StartY { get; set; }
  11. public void CopyTo(AgConfig other)
  12. {
  13. other.AutoAdjustThinkTimeInterval = AutoAdjustThinkTimeInterval;
  14. other.SleepTime = SleepTime;
  15. other.ThinkTimeInterval = ThinkTimeInterval;
  16. other.LowPerformance = LowPerformance;
  17. other.StartX = StartX;
  18. other.StartY = StartY;
  19. }
  20. }
  21. }