29 lines
501 B
C#
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;
|
|
}
|
|
}
|
|
} |