start开发完成

This commit is contained in:
2026-05-17 11:35:43 +08:00
parent d2235bf7b7
commit ce9b1e85e9
67 changed files with 4285 additions and 149 deletions

19
Assets/Script/Main.cs Normal file
View File

@@ -0,0 +1,19 @@
using RenderStreaming;
using Stary.Evo;
using Stary.Evo.UIFarme;
using Unity.RenderStreaming;
using UnityEngine;
public class Main : MonoBehaviour, IController
{
private void Start()
{
this.GetSystem<IPanelSystem>().PushQueue<StartPanel>();
}
public IArchitecture GetArchitecture()
{
return MainArchitecture.Interface;
}
}