16 lines
289 B
C#
16 lines
289 B
C#
|
#if GRIFFIN
|
||
|
using UnityEditor;
|
||
|
|
||
|
namespace Pinwheel.Griffin.HelpTool
|
||
|
{
|
||
|
[CustomEditor(typeof(GHelpComponent))]
|
||
|
public class GHelpComponentInspector : Editor
|
||
|
{
|
||
|
public override void OnInspectorGUI()
|
||
|
{
|
||
|
GHelpToolDrawer.DrawGUI();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#endif
|