27 lines
375 B
C#
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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|