BITFALL/Assets/BITKit/Core/UX/IUXPopUp.cs

12 lines
185 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace BITKit.UX
{
public interface IUXPopup
{
void Popup(string content,float duration=3f);
}
}