using UnityEngine; namespace Fungus { /// /// Flowchart nodes. /// public interface INode { /// /// Returns the display rect. /// Rect _NodeRect { get; set; } } }