2026-03-26 10:49:41 +08:00
|
|
|
using UnityEditor;
|
|
|
|
|
|
|
|
|
|
namespace AlicizaX
|
|
|
|
|
{
|
|
|
|
|
[CustomEditor(typeof(PoolConfigScriptableObject))]
|
|
|
|
|
public sealed class PoolConfigScriptableObjectEditor : UnityEditor.Editor
|
|
|
|
|
{
|
|
|
|
|
public override void OnInspectorGUI()
|
|
|
|
|
{
|
2026-04-30 17:18:17 +08:00
|
|
|
DrawDefaultInspector();
|
2026-03-26 10:49:41 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|