10 lines
232 B
C#
10 lines
232 B
C#
using UnityEngine;
|
|
|
|
public class RacerProgress : MonoBehaviour
|
|
{
|
|
// The checkpoint index the racer is currently aiming for.
|
|
public int currentCheckpointIndex = 0;
|
|
// The current lap count.
|
|
public int lapCount = 0;
|
|
}
|