DirectOutputR1
DirectOutput framework R1 for virtual pinball cabinets.
Go to:
Overview 
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros Pages
IRGBToy.cs
Go to the documentation of this file.
1 using System;
2 using DirectOutput.Cab.Color;
3 namespace DirectOutput.Cab.Toys.Basic
4 {
8  public interface IRGBToy:IToy
9  {
16  int Blue { get; }
23  int Green { get; }
30  int Red { get; }
31 
36  void SetColor(RGBColor Color);
43  void SetColor(int Red, int Green, int Blue);
44 
49  void SetColor(string Color);
50  }
51 }