24 lines
452 B
C#
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()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|