13 lines
205 B
C#
13 lines
205 B
C#
using UnityEditor;
|
|
|
|
namespace AllIn13DShader
|
|
{
|
|
[CustomEditor(typeof(GlobalConfiguration))]
|
|
public class GlobalConfigurationCustomEditor : Editor
|
|
{
|
|
public override void OnInspectorGUI()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |