mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-26 15:27:59 +01:00
10 lines
151 B
C#
10 lines
151 B
C#
using UnityEngine;
|
|
|
|
namespace Fie.Object
|
|
{
|
|
public class FiePlayerSpawnPoint : MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
public int spawnPointNumber;
|
|
}
|
|
}
|