fpc/tests/webtbs/uw39543b.pp
Nikolay Nikolov 2c0f10d988 * when adding WebAssembly object info, traverse through current_module.used_units,
as well as the usedunits global. This resolves #39543
2022-02-12 08:32:48 +02:00

27 lines
315 B
ObjectPascal

unit uw39543b;
interface
{$MODE objfpc}
type
TVector4 = record
X, Y, Z, W: Single;
end;
function Vector4(X, Y, Z, W: Single): TVector4;
implementation
uses
uw39543a;
function Vector4(X, Y, Z, W: Single): TVector4;
begin
Result.X := X;
Result.Y := Y;
Result.Z := Z;
Result.W := W;
end;
end.