14 lines
290 B
C#
14 lines
290 B
C#
using UnityEditor;
|
|
|
|
namespace AlicizaX
|
|
{
|
|
[CustomEditor(typeof(PoolConfigScriptableObject))]
|
|
public sealed class PoolConfigScriptableObjectEditor : UnityEditor.Editor
|
|
{
|
|
public override void OnInspectorGUI()
|
|
{
|
|
DrawDefaultInspector();
|
|
}
|
|
}
|
|
}
|