DirectOuput Framework R2
DirectOutput framework R2 for virtual pinball cabinets
Go to:
Overview 
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros Pages
IToy.cs
Go to the documentation of this file.
1 using DirectOutput.General.Generic;
2 namespace DirectOutput.Cab.Toys
3 {
4 
9  public interface IToy:INamedItem
10  {
17  new string Name { get; set; }
18 
19 
24  void Init(Cabinet Cabinet);
25 
26 
27 
28 
32  void Reset();
33 
37  void Finish();
38  }
39 }