Files
AliceBall/Assets/_Alice/Scripts/UI/GameovePanel.cs

14 lines
242 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using XUI;
public class GameovePanel : UIBehaviour
{
public static void Show()
{
WorldUIManager.Ins.Cover("UI/GameovePanel", false);
}
}