两个页面接入完成

This commit is contained in:
2026-05-19 22:40:52 +08:00
parent 3daebf56ab
commit 369783939b
32 changed files with 1165 additions and 590 deletions

View File

@@ -0,0 +1,29 @@
using RenderStreaming;
using Stary.Evo;
using UnityEngine;
namespace Script
{
public class MeetingChat : IController
{
public GameObject PanelGo;
public void Initialize(GameObject panelGo)
{
PanelGo = panelGo;
}
public async void OnEnter()
{
}
public async void OnExit()
{
}
public IArchitecture GetArchitecture()
{
return MainArchitecture.Interface;
}
}
}