| 123456789101112131415161718 |
- using System.Runtime.InteropServices;
- namespace DotRecast.Detour
- {
- public readonly struct DtConnectPoly
- {
- public readonly long refs;
- public readonly float tmin;
- public readonly float tmax;
- public DtConnectPoly(long refs, float tmin, float tmax)
- {
- this.refs = refs;
- this.tmin = tmin;
- this.tmax = tmax;
- }
- }
- }
|