Files
webRtc/Assets/Script/MainPanel/MeetingChat.cs
2026-05-19 22:40:52 +08:00

29 lines
501 B
C#

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;
}
}
}