This repository has been archived on 2024-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
sota/RunningLateGame/Assets/Scripts/VehicleWaypoint.cs

15 lines
310 B
C#

/*
* author: mark joshwel
* date: 15/08/2024
* description: vehicular target
*/
using UnityEngine;
public class VehicleWaypoint : MonoBehaviour
{
/// <summary>
/// next vehicle target waypoint for the vehicle to move to
/// </summary>
[SerializeField] private GameObject nextTarget;
}