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

12 lines
162 B

using UnityEngine;
using System.Collections;
public class SayTest : MonoBehaviour
{
public int passCount;
public void TestPassed()
{
passCount++;
}
}