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

12 lines
163 B

using UnityEngine;
using System.Collections;
namespace Fungus
{
public class Node : MonoBehaviour
{
public Rect nodeRect = new Rect(0, 0, 120, 30);
}
}