using System; using System.Collections.Generic; using UnityEngine; namespace Routes { public class Routes : MonoBehaviour { public Route[] routes; public int selectedRoute = -1; private void Start() { throw new NotImplementedException(); } } }