两个页面接入完成
This commit is contained in:
29
Assets/Script/MainPanel/MeetingChat.cs
Normal file
29
Assets/Script/MainPanel/MeetingChat.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user