8 lines
132 B
C#
8 lines
132 B
C#
|
using System.Collections;
|
|||
|
|
|||
|
public interface ILoader
|
|||
|
{
|
|||
|
IEnumerator Load(ILoading target, float progress);
|
|||
|
void Close();
|
|||
|
}
|