_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/Battle_Royale/PlayerMovePos.cs
2024-11-12 19:43:17 +08:00

24 lines
452 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerMovePos : MonoBehaviour
{
public static PlayerMovePos instance;
public Transform StartPos;
public Transform EndPos;
public int StartIndex;
// Start is called before the first frame update
void Start()
{
instance = this;
}
// Update is called once per frame
void Update()
{
}
}