You've already forked taptap2024_GJ_chidouren
10 lines
179 B
C#
10 lines
179 B
C#
using System;
|
|
|
|
namespace StateSystem.Loader
|
|
{
|
|
public interface ILoader
|
|
{
|
|
void BeginLoad(Action<float> onLoading, Action onComplete);
|
|
void Active();
|
|
}
|
|
} |