Files
textdecalURP/Packages/com.unity.asset-store-tools/Editor/AssetStoreToolsWindow.cs
Kirill Chikalin a3072a3693 first commit
2024-11-16 13:20:07 +03:00

21 lines
400 B
C#

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