Made children spawn

This commit is contained in:
Pasha Bibko
2026-01-13 10:23:50 +00:00
parent d54a99874f
commit 8b648fd690
17 changed files with 441 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
using UnityEngine;
namespace InterfaceOff
{
public abstract class WindowBase : MonoBehaviour
{
public void InstantiateWindowBase()
{
}
}
}