UNPKG

unreal.js

Version:

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

32 lines (31 loc) 731 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FDataTableRowHandle = void 0; /** * FDataTableRowHandle */ class FDataTableRowHandle { /** * Gets row * @returns {UObject} Row * @public */ getRow() { if (this.DataTable != null) { return this.DataTable.findRow(this.RowName); } return null; } /** * Gets row mapped * @returns {FTableRowBase} Row * @public */ getRowMapped() { if (this.DataTable != null) { return this.DataTable.findRowMapped(this.RowName); } return null; } } exports.FDataTableRowHandle = FDataTableRowHandle;