20 lines
383 B
C#
20 lines
383 B
C#
using System.Net;
|
|
using RenderStreaming;
|
|
using Stary.Evo;
|
|
using Stary.Evo.UIFarme;
|
|
using Unity.RenderStreaming;
|
|
using UnityEngine;
|
|
|
|
public class Main : MonoBehaviour, IController
|
|
{
|
|
private void Start()
|
|
{
|
|
this.GetSystem<IPanelSystem>().PushQueue<StartPanel>();
|
|
}
|
|
|
|
|
|
public IArchitecture GetArchitecture()
|
|
{
|
|
return MainArchitecture.Interface;
|
|
}
|
|
} |