17 lines
343 B
17 lines
343 B
10 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace UnityTest
|
||
|
{
|
||
|
public class RenderingOptions
|
||
|
{
|
||
|
public string nameFilter;
|
||
|
public bool showSucceeded;
|
||
|
public bool showFailed;
|
||
|
public bool showIgnored;
|
||
|
public bool showNotRunned;
|
||
|
public string[] categories;
|
||
|
}
|
||
|
}
|