_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/Battle_Royale/PlayerMovePos.cs

24 lines
452 B
C#
Raw Normal View History

2024-11-12 19:43:17 +08:00
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()
{
}
}