DtPolyPoint.cs 311 B

12345678910111213141516
  1. using DotRecast.Core;
  2. namespace DotRecast.Detour
  3. {
  4. public readonly struct DtPolyPoint
  5. {
  6. public readonly long refs;
  7. public readonly RcVec3f pt;
  8. public DtPolyPoint(long polyRefs, RcVec3f polyPt)
  9. {
  10. refs = polyRefs;
  11. pt = polyPt;
  12. }
  13. }
  14. }