update libs

This commit is contained in:
Kirill Chikalin
2025-02-13 17:48:12 +03:00
parent e17e7c2786
commit 275dc598c7
816 changed files with 22479 additions and 10792 deletions

View File

@@ -7,15 +7,17 @@ namespace AssetStoreTools
{
protected abstract string WindowTitle { get; }
protected virtual void Init()
private void DefaultInit()
{
titleContent = new GUIContent(WindowTitle);
Init();
}
protected abstract void Init();
private void OnEnable()
{
Init();
DefaultInit();
}
}
}