14 lines
222 B
C#
14 lines
222 B
C#
using UnityEngine;
|
|
|
|
namespace Player.Services
|
|
{
|
|
public class PlayerSpawnerService
|
|
{
|
|
private GameObject _playerPrefab;
|
|
|
|
public void Spawn(Vector3 position)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |