using System.Collections;
using System.Collections.Generic;
using UnityEngine;
///
/// 在分数结算点对分数进行修正
///
public class ScoreCheckPoint : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}
///
/// 分数结算店
///
public enum CheckPoint
{
Start,
FirstInLive
}