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