WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview 
IOutput.cs
Go to the documentation of this file.
1 using System;
3 namespace DirectOutput.Cab.Out
4 {
5 
10  public interface IOutput:INamedItem
11  {
12 
13 
18  byte Value { get; set; }
19 
20 
27  int Number { get; set; }
28 
29 
34  }
35 }
Output.ValueChangedEventHandler ValueChanged
This event has to fire if the Value of the output is changed
Definition: IOutput.cs:33
delegate void ValueChangedEventHandler(object sender, OutputEventArgs e)
Event handler for ValueChanged events.
Interface for items which can be added the the NamedItemList.
Definition: INamedItem.cs:8
Common interface for outputs of any output controller. The Output class implements this interface and...
Definition: IOutput.cs:10
The namespace DirectOutput.General contains classes for general use.
Basic IOutput implementation.
Definition: Output.cs:14