1234567891011121314151617 |
- using UnityEngine;
- using System.Collections;
- using System.Collections.Generic;
- /// <summary>
- /// 用于关卡读取
- /// </summary>
- public class InLoading : MonoBehaviour
- {
- /// <summary>
- /// 初始化
- /// </summary>
- void Start()
- {
- AssemblyHelper.Instance.BindScript("Entrance_LevelLoading", gameObject);
- }
- }
|