DirectOuput Framework R2
DirectOutput framework R2 for virtual pinball cabinets
Go to:
Overview 
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros Pages
LedWizEquivalentOutput.cs
Go to the documentation of this file.
1 using System.Xml.Serialization;
2 using DirectOutput.Cab.Out;
3 
4 namespace DirectOutput.Cab.Toys.LWEquivalent
5 {
9  public class LedWizEquivalentOutput
10  {
17 
18  public string OutputName { get; set; }
19 
26  public int LedWizEquivalentOutputNumber { get; set; }
27 
28 
29  private IOutput _Output;
30 
35  public void Init(Cabinet Cabinet)
36  {
37  if (Cabinet.Outputs.Contains(OutputName))
38  {
39  _Output = Cabinet.Outputs[OutputName];
40  }
41  else
42  {
43  _Output = null;
44  }
45  }
46 
50  public void Reset()
51  {
52 
53  }
54 
58  public void Finish()
59  {
60 
61  _Output = null;
62  }
63  }
64 }