DirectOutputR1
DirectOutput framework R1 for virtual pinball cabinets.
Go to:
Overview 
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros Pages
IAnalogAlphaToy.cs
Go to the documentation of this file.
1 using System;
2 namespace DirectOutput.Cab.Toys.Layer
3 {
7  public interface IAnalogAlphaToy
8  {
12  void Finish();
17  void Init(DirectOutput.Cab.Cabinet Cabinet);
24  AnalogLayerDictionary Layers { get; }
25 
32  //TODO: CHeck if this property should really be part of this interface.
33  string OutputName { get; set; }
37  void Reset();
38 
39  }
40 }