15 lines
310 B
C#
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;
|
||
|
}
|