WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview 
IOutputController.cs
Go to the documentation of this file.
1 using System;
3 namespace DirectOutput.Cab.Out
4 {
10  public interface IOutputController : INamedItem
11  {
12 
13 
19  void Init(Cabinet Cabinet);
20 
25  void Finish();
26 
27 
35  new string Name { get; set; }
36 
40  OutputList Outputs { get; set; }
41 
42 
47  void Update();
48  }
49 }
The Cabinet object describes the parts of a pinball cabinet (toys, outputcontrollers, outputs and more).
Definition: Cabinet.cs:17
List of IOutput objects
Definition: OutputList.cs:13
Interface for items which can be added the the NamedItemList.
Definition: INamedItem.cs:8
Common interface for all outputcontrollers. Only classes implementing this interface can be used as o...
The namespace DirectOutput.General contains classes for general use.