9 lines
116 B
C#

using UnityEngine;
namespace D2D.Gameplay
{
public interface ISpawner
{
GameObject Spawn();
}
}