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