14 lines
244 B
C#
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);
|
|
}
|
|
}
|