mirror of
https://github.com/RaindropViewer/RaindropViewer.git
synced 2026-07-27 16:08:08 +00:00
27 lines
573 B
C#
27 lines
573 B
C#
using Raindrop.Netcom;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
|
|
namespace Raindrop.Presenters
|
|
{
|
|
public class LoadingCanvasPresenter : MonoBehaviour
|
|
{
|
|
private RaindropInstance instance { get { return RaindropInstance.GlobalInstance; } }
|
|
private RaindropNetcom netcom { get { return instance.Netcom; } }
|
|
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|