11 lines
214 B
C#
11 lines
214 B
C#
using Game.Scripts.Runtime.Data;
|
|
using UnityEngine;
|
|
|
|
namespace Game.Scripts.Runtime.Abstractions
|
|
{
|
|
public interface ISpawnRule
|
|
{
|
|
bool CanSpawn(EnemyDefinition definition, Vector3 position);
|
|
}
|
|
}
|