Files
taptap2024_GJ_chidouren/Assets/Scripts/System/Loader/ILoader.cs

10 lines
179 B
C#
Raw Normal View History

2024-10-16 00:03:41 +08:00
using System;
namespace StateSystem.Loader
{
public interface ILoader
{
void BeginLoad(Action<float> onLoading, Action onComplete);
void Active();
}
}