WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview 
IMatrixBitmapEffect.cs
Go to the documentation of this file.
1 using System;
2 namespace DirectOutput.FX.MatrixFX
3 {
4  public interface IMatrixBitmapEffect : IMatrixEffect
5  {
6  DirectOutput.General.FilePattern BitmapFilePattern { get; set; }
7  int BitmapFrameNumber { get; set; }
8  int BitmapHeight { get; set; }
9  int BitmapLeft { get; set; }
10  int BitmapTop { get; set; }
11  int BitmapWidth { get; set; }
12  DirectOutput.General.BitmapHandling.FastBitmapDataExtractModeEnum DataExtractMode { get; set; }
13  }
14 }
The namespace DirectOutput.General contains classes for general use.
A file pattern class used to lookup files matching a specified pattern.
Definition: FilePattern.cs:12