DirectOutputR1
DirectOutput framework R1 for virtual pinball cabinets.
Go to:
Overview 
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros Pages
Lamp.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Xml.Serialization;
6 
7 namespace DirectOutput.Cab.Toys.Basic
8 {
9 
16  public class Lamp : AnalogToy, IToy,ILampToy
17  {
18 
22  [XmlIgnoreAttribute]
23  public int Brightness
24  {
25  get
26  {
27  return Value;
28  }
29  protected set
30  {
31  SetValue( value);
32  }
33  }
34 
35 
40  public void SetBrightness(int Brightness)
41  {
42  SetValue(Brightness);
43  }
44 
45 
46  }
47 }