Routes.cs 312 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace Routes
  5. {
  6. public class Routes : MonoBehaviour
  7. {
  8. public Route[] routes;
  9. public int selectedRoute = -1;
  10. private void Start()
  11. {
  12. throw new NotImplementedException();
  13. }
  14. }
  15. }