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
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