first commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user