DirectOutputR1
DirectOutput framework R1 for virtual pinball cabinets.
Go to:
Overview 
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros Pages
IOutputController.cs
Go to the documentation of this file.
1 using System;
2 using DirectOutput.General.Generic;
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 }