Files
2024-11-19 11:48:21 +01:00

19 lines
460 B
C#

using UnityEngine;
namespace Gley.TrafficSystem.Internal
{
/// <summary>
/// Stores the enabled optional traffic system modules.
/// </summary>
public class TrafficModules : MonoBehaviour
{
[SerializeField] private bool _pathFinding;
public bool PathFinding => _pathFinding;
public void SetModules(bool enablePathFinding)
{
_pathFinding = enablePathFinding;
}
}
}