WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview 
IToyUpdatable.cs
Go to the documentation of this file.
1 
2 namespace DirectOutput.Cab.Toys
3 {
7  public interface IToyUpdatable: IToy
8  {
13  void UpdateOutputs();
14  }
15 }
Interface for toys which need a update method which is used to update their outputs.
Definition: IToyUpdatable.cs:7
Common interface for all toy implementations. The abstract class ToyBase implements this interface...
Definition: IToy.cs:9