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

9 lines
145 B
C#
Raw Normal View History

2021-11-26 11:16:25 +03:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public interface ILoading
{
IEnumerator Load();
}