20 lines
315 B
C#
20 lines
315 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class LoaderCallBack : MonoBehaviour
|
|
{
|
|
private bool _firstUpdate;
|
|
|
|
private void Update()
|
|
{
|
|
if (!_firstUpdate)
|
|
{
|
|
_firstUpdate = true;
|
|
Load.LoaderCallBack();
|
|
}
|
|
}
|
|
|
|
|
|
}
|