Files
racesm/Assets/Scripts/GameManager.cs
2024-04-24 07:27:55 +02:00

23 lines
363 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameManager : MonoBehaviour
{
public int lapAmount;
public GameObject[] checkpoints;
public GameObject[] players;
int currentLap = 1;
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}