WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview 
ISingleOutputToy.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 
6 namespace DirectOutput.Cab.Toys
7 {
8  public interface ISingleOutputToy:IToy
9  {
10 
11 
18 
19  string OutputName { get; set; }
20  }
21 }
Common interface for all toy implementations. The abstract class ToyBase implements this interface...
Definition: IToy.cs:9