Files
BITFALL/Assets/BITFALL/Scene/ISpawnPointService.cs
CortexCore 3c837a4a33 1
2023-11-15 23:54:54 +08:00

20 lines
509 B
C#

using System.Collections;
using System.Collections.Generic;
using Unity.Mathematics;
namespace BITFALL.Scene
{
public interface ISpawnPointService
{
public float4x4 RequestSpawnPoint(params object[] tags);
}
public abstract class SpawnPointServiceImplement : ISpawnPointService
{
protected abstract ISpawnPointService _spawnPointServiceImplementation { get; }
public float4x4 RequestSpawnPoint(params object[] tags)
{
return _spawnPointServiceImplementation.RequestSpawnPoint(tags);
}
}
}