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