WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview 
ToyBaseUpdatable.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;
7 
8 namespace DirectOutput.Cab.Toys
9 {
10 
15  public abstract class ToyBaseUpdatable : ToyBase, IToyUpdatable
16  {
17 
18  #region IToyUpdatable Member
19 
23  public abstract void UpdateOutputs();
24 
25  #endregion
26  }
27 }
Interface for toys which need a update method which is used to update their outputs.
Definition: IToyUpdatable.cs:7
Base class for toys which need update calls to update the state of their assigned outputs...
Base class for IToy implementations
Definition: ToyBase.cs:14
The namespace DirectOutput.General contains classes for general use.