WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview 
IRGBOutputToy.cs
Go to the documentation of this file.
1 using System;
4 namespace DirectOutput.Cab.Toys
5 {
9  public interface IRGBOutputToy: IToy
10  {
17  string OutputNameBlue { get; set; }
24  string OutputNameGreen { get; set; }
31  string OutputNameRed { get; set; }
32 
33 
34  }
35 }
The namespace DirectOutput.Cab.Toys contains all toy related classes.
Common interface for RGB toys supporting several layers of color with alpha value.
Definition: IRGBOutputToy.cs:9
Common interface for all toy implementations. The abstract class ToyBase implements this interface...
Definition: IToy.cs:9
The namespace DirectOutput.Cab contains all cabinet related classes like the Cabinet class itself...
Definition: Cab.cs:16
Namespace for objects dealing with layers
The namespace DirectOutput.General contains classes for general use.