Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
RegressionTestAttribute.cs
Go to the documentation of this file.
1 namespace SiliconStudio.Paradox.Graphics.Regression
2 {
3  [System.AttributeUsage(System.AttributeTargets.Method)]
4  public class RegressionTestAttribute : System.Attribute
5  {
6  private int frameIndex;
7 
8  public RegressionTestAttribute(int frame)
9  {
10  frameIndex = frame;
11  }
12  }
13 }