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

12 lines
165 B

using UnityEngine;
using System.Collections;
namespace Fungus
{
public class Node : MonoBehaviour
{
public Rect nodeRect = new Rect(10, 10, 100, 20);
}
}