WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview 
ICabinetOwner.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
6 
7 namespace DirectOutput.Cab
8 {
9  public interface ICabinetOwner
10  {
18  Dictionary<string, object> ConfigurationSettings { get; }
19 
26  AlarmHandler Alarms { get; set; }
27  }
28 }
The AlarmHandler classed is used to execute scheduled events (e.g. regular updates on a effect) in th...
Definition: AlarmHandler.cs:14
Support classes used by the Pinball object.
Definition: AlarmHandler.cs:6