Files

10 lines
179 B
C#
Raw Permalink 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();
}
}