using UnityEngine;
using System.Collections;

namespace Fungus
{

	public class Node : MonoBehaviour 
	{
		public Rect nodeRect = new Rect(10, 10, 100, 20);
	}

}