8 lines
140 B
C#
8 lines
140 B
C#
namespace GreadyPoang.Core;
|
|
|
|
public interface IOverlayService
|
|
{
|
|
void ShowSplash(string text, int duration);
|
|
void HideSplash();
|
|
}
|