DirectOutputR1
DirectOutput framework R1 for virtual pinball cabinets.
Go to:
Overview 
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros Pages
IDigitalToy.cs
Go to the documentation of this file.
1 using System;
2 namespace DirectOutput.Cab.Toys.Basic
3 {
8  public interface IDigitalToy : IToy
9  {
10 
17  string OutputName { get; set; }
18 
23  void SetState(bool State);
30  bool State { get; }
31  }
32 }