unreal.js
Version:
A pak reader for games like VALORANT & Fortnite written in Node.JS
12 lines (11 loc) • 427 B
TypeScript
import { FVector } from "./FVector";
import { FArchive } from "../../../reader/FArchive";
import { FArchiveWriter } from "../../../writer/FArchiveWriter";
export declare class FBoxSphereBounds {
origin: FVector;
boxExtent: FVector;
sphereRadius: number;
constructor(origin: FVector, boxExtent: FVector, sphereRadius: number);
constructor(Ar: FArchive);
serialize(Ar: FArchiveWriter): void;
}