Files
textdecalURP/Packages/com.unity.asset-store-tools/Editor/AssetStoreToolsWindow.cs
Kirill Chikalin 275dc598c7 update libs
2025-02-13 17:48:12 +03:00

23 lines
456 B
C#

using UnityEditor;
using UnityEngine;
namespace AssetStoreTools
{
internal abstract class AssetStoreToolsWindow : EditorWindow
{
protected abstract string WindowTitle { get; }
private void DefaultInit()
{
titleContent = new GUIContent(WindowTitle);
Init();
}
protected abstract void Init();
private void OnEnable()
{
DefaultInit();
}
}
}