Wristband.cs 534 B

123456789101112131415161718192021222324
  1. using System;
  2. namespace SketchAssistantWPF
  3. {
  4. public class Wristband
  5. {
  6. /// <summary>
  7. /// Function to call when the wristband should push forwards.
  8. /// </summary>
  9. public void PushForward()
  10. {
  11. Console.WriteLine("FORWARD_PUSH");
  12. }
  13. /// <summary>
  14. /// Function to call when the wristband should push backwards.
  15. /// </summary>
  16. public void PushBackward()
  17. {
  18. Console.WriteLine("BACKWARD_PUSH");
  19. }
  20. }
  21. }