// ===================================================================== // Copyright 2013-2017 Fluffy Underware // All rights reserved // // http://www.fluffyunderware.com // ===================================================================== using UnityEngine; using System.Collections; namespace FluffyUnderware.DevTools { /// /// A component to display notes in the inspector /// [HelpURL(DTUtility.HelpUrlBase + "dtinspectornode")] public class InspectorNote : DTVersionedMonoBehaviour { [TextArea(5,20)] [SerializeField] string m_Note; } }