UNPKG

unreal.js

Version:

A pak reader for games like VALORANT & Fortnite written in Node.JS

10 lines (9 loc) 341 B
import { FVector } from "../../../objects/core/math/FVector"; import { FArchive } from "../../../reader/FArchive"; export declare class FPositionVertexBuffer { verts: FVector[]; stride: number; numVertices: number; constructor(Ar: FArchive); constructor(verts: FVector[], stride: number, numVertices: number); }