12345678910111213141516171819202122232425262728 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- namespace LoyalSoftSDK
- {
- public class LoadingPanel : BaseUIForm
- {
- // Use this for initialization
- public override void Init()
- {
- curUIType = UIType.Loading;
- }
- public override void Display(BaseUIForm _parent, Dictionary<string, string> data)
- {
-
- base.Display(_parent, data);
- }
- // Update is called once per frame
- void Update()
- {
- }
- }
- }
|