DtSegInterval.cs 360 B

12345678910111213141516
  1. namespace DotRecast.Detour
  2. {
  3. public readonly struct DtSegInterval
  4. {
  5. public readonly long refs;
  6. public readonly int tmin;
  7. public readonly int tmax;
  8. public DtSegInterval(long refs, int tmin, int tmax)
  9. {
  10. this.refs = refs;
  11. this.tmin = tmin;
  12. this.tmax = tmax;
  13. }
  14. }
  15. }