Files
webRtc/Assets/Script/MeetingChatController.cs
2026-05-12 17:45:40 +08:00

27 lines
375 B
C#

using System.Collections;
using System.Collections.Generic;
using RenderStreaming;
using Stary.Evo;
using UnityEngine;
public class MeetingChatController : MonoBehaviour,IController
{
void Start()
{
}
void Update()
{
}
public IArchitecture GetArchitecture()
{
return MainArchitecture.Interface;
}
}