DtConnectPoly.cs 407 B

123456789101112131415161718
  1. using System.Runtime.InteropServices;
  2. namespace DotRecast.Detour
  3. {
  4. public readonly struct DtConnectPoly
  5. {
  6. public readonly long refs;
  7. public readonly float tmin;
  8. public readonly float tmax;
  9. public DtConnectPoly(long refs, float tmin, float tmax)
  10. {
  11. this.refs = refs;
  12. this.tmin = tmin;
  13. this.tmax = tmax;
  14. }
  15. }
  16. }