14 lines
153 B
Plaintext
14 lines
153 B
Plaintext
|
unit aiVector2D;
|
||
|
|
||
|
interface
|
||
|
|
||
|
type TaiVector2D = packed record
|
||
|
x, y: single;
|
||
|
end;
|
||
|
type PaiVector2D = ^TaiVector2D;
|
||
|
|
||
|
|
||
|
implementation
|
||
|
|
||
|
end.
|