unreal.js
Version:
A pak reader for games like VALORANT & Fortnite written in Node.JS
15 lines (14 loc) • 851 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EFortCustomPartType = void 0;
var EFortCustomPartType;
(function (EFortCustomPartType) {
EFortCustomPartType[EFortCustomPartType["Head"] = 0] = "Head";
EFortCustomPartType[EFortCustomPartType["Body"] = 1] = "Body";
EFortCustomPartType[EFortCustomPartType["Hat"] = 2] = "Hat";
EFortCustomPartType[EFortCustomPartType["Backpack"] = 3] = "Backpack";
EFortCustomPartType[EFortCustomPartType["MiscOrTail"] = 4] = "MiscOrTail";
EFortCustomPartType[EFortCustomPartType["Face"] = 5] = "Face";
EFortCustomPartType[EFortCustomPartType["Gameplay"] = 6] = "Gameplay";
EFortCustomPartType[EFortCustomPartType["NumTypes"] = 7] = "NumTypes";
})(EFortCustomPartType = exports.EFortCustomPartType || (exports.EFortCustomPartType = {}));