An easy to use Unity 3D library for creating illustrated Interactive Fiction games and more.

17 lines
343 B

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