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.

CommandEvent.cs 526 B

2 years ago
2 years ago
123456789101112131415161718192021222324252627
  1. using BPA.Utility;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace HBLDevice.ICChip
  8. {
  9. public class TakeCupEvent : IEvent
  10. {
  11. /// <summary>
  12. /// 杯
  13. /// </summary>
  14. public IC_CUP Cup { get; set; }
  15. }
  16. public class MakeIceCreamEvent : IEvent
  17. {
  18. public IC_SE SteeringEngine { get; set; }
  19. }
  20. public class RotorSwitchEvent : IEvent
  21. {
  22. public bool TurnOn { get; set; }
  23. }
  24. }