DirectOutputR1
DirectOutput framework R1 for virtual pinball cabinets.
Go to:
Overview 
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros Pages
IRGBAToy.cs
Go to the documentation of this file.
1 using System;
2 namespace DirectOutput.Cab.Toys.Layer
3 {
7  public interface IRGBAToy
8  {
12  void Finish();
17  void Init(Cabinet Cabinet);
18 
25  RGBALayerDictionary Layers { get; }
32  string OutputNameBlue { get; set; }
39  string OutputNameGreen { get; set; }
46  string OutputNameRed { get; set; }
50  void Reset();
51 
52  }
53 }