WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview 
IMatrixToy.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 {
12  public interface IMatrixToy<MatrixElementType>:IToy
13  {
19  MatrixElementType[,] GetLayer(int LayerNr);
20 
27  int Height { get; }
28 
35  int Width { get; }
36  }
37 }
38 
Interface for toys having a matrix of elements (e.g. ledstrips)
Definition: IMatrixToy.cs:12
Common interface for all toy implementations. The abstract class ToyBase implements this interface...
Definition: IToy.cs:9