13 lines
216 B
C#
13 lines
216 B
C#
|
using System.Collections;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
public class NullLoader : ILoader
|
|||
|
{
|
|||
|
public void Close() { }
|
|||
|
|
|||
|
public IEnumerator Load(ILoading target, float progress)
|
|||
|
{
|
|||
|
yield return null;
|
|||
|
}
|
|||
|
}
|