Road.cs 162 B

1234567891011
  1. using UnityEngine.UIElements;
  2. namespace Roads
  3. {
  4. public interface IRoad
  5. {
  6. float SlopeDeg { get; }
  7. float MinY { get; }
  8. }
  9. }