8 lines
179 B
C#
8 lines
179 B
C#
using UnityEngine;
|
|
|
|
public class BaseHovercarController : MonoBehaviour
|
|
{
|
|
|
|
[Tooltip("Ordered list of checkpoints for the AI to follow.")]
|
|
public Transform[] checkpoints;
|
|
} |