hellbound/Assets/Scripts/Game/Loader/ILoader.cs

8 lines
132 B
C#
Raw Normal View History

2021-11-26 11:16:25 +03:00
using System.Collections;
public interface ILoader
{
IEnumerator Load(ILoading target, float progress);
void Close();
}