unreal.js
Version:
A pak reader for games like VALORANT & Fortnite written in Node.JS
36 lines (35 loc) • 862 B
TypeScript
import { UStruct } from "./UStruct";
import { FAssetArchive } from "../reader/FAssetArchive";
import { Lazy } from "../../../util/Lazy";
/**
* UFunction
* @extends {UStruct}
*/
export declare class UFunction extends UStruct {
/**
* Function flags
* @type {number}
* @public
*/
functionFlags: number;
/**
* Event graph function
* @type {UFunction}
* @public
*/
eventGraphFunction: Lazy<UFunction>;
/**
* Event graph call offset
* @type {number}
* @public
*/
eventGraphCallOffset: number;
/**
* Deserializes this
* @param {FAssetArchive} Ar UE4 Asset Reader to use
* @param {number} validPos End position of reader
* @returns {void}
* @public
*/
deserialize(Ar: FAssetArchive, validPos: number): void;
}