aiVector2D.pas 153 B

12345678910111213
  1. unit aiVector2D;
  2. interface
  3. type TaiVector2D = packed record
  4. x, y: single;
  5. end;
  6. type PaiVector2D = ^TaiVector2D;
  7. implementation
  8. end.