9 lines
116 B
C#
9 lines
116 B
C#
6 months ago
|
using UnityEngine;
|
||
|
|
||
|
namespace D2D.Gameplay
|
||
|
{
|
||
|
public interface ISpawner
|
||
|
{
|
||
|
GameObject Spawn();
|
||
|
}
|
||
|
}
|