123456789101112131415161718192021222324 |
- using System;
- namespace SketchAssistantWPF
- {
- public class Wristband
- {
-
- /// <summary>
- /// Function to call when the wristband should push forwards.
- /// </summary>
- public void PushForward()
- {
- Console.WriteLine("FORWARD_PUSH");
- }
- /// <summary>
- /// Function to call when the wristband should push backwards.
- /// </summary>
- public void PushBackward()
- {
- Console.WriteLine("BACKWARD_PUSH");
- }
- }
- }
|