Files
Cielonos/Packages/com.lunawolfstudios.scriptablesheets/Editor/Settings/SettingsData/IScriptableSettings.cs
SoulliesOfficial 7ee2894a63 整合SLSUtilities
2026-01-17 11:35:49 -05:00

14 lines
244 B
C#

using UnityEditor;
using UnityEngine;
namespace LunaWolfStudiosEditor.ScriptableSheets
{
public interface IScriptableSettings
{
bool Foldout { get; set; }
GUIContent FoldoutContent { get; }
void DrawGUI(SerializedObject target);
}
}