Files
webRtc/Assets/Script/MeetingChatController.cs

27 lines
375 B
C#
Raw Normal View History

2026-05-12 17:45:40 +08:00
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;
}
}