unreal.js
Version:
A pak reader for games like VALORANT & Fortnite written in Node.JS
16 lines (15 loc) • 961 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EFortCustomBodyType = void 0;
var EFortCustomBodyType;
(function (EFortCustomBodyType) {
EFortCustomBodyType[EFortCustomBodyType["NONE"] = 0] = "NONE";
EFortCustomBodyType[EFortCustomBodyType["Small"] = 1] = "Small";
EFortCustomBodyType[EFortCustomBodyType["Medium"] = 2] = "Medium";
EFortCustomBodyType[EFortCustomBodyType["MediumAndSmall"] = 3] = "MediumAndSmall";
EFortCustomBodyType[EFortCustomBodyType["Large"] = 4] = "Large";
EFortCustomBodyType[EFortCustomBodyType["LargeAndSmall"] = 5] = "LargeAndSmall";
EFortCustomBodyType[EFortCustomBodyType["LargeAndMedium"] = 6] = "LargeAndMedium";
EFortCustomBodyType[EFortCustomBodyType["All"] = 7] = "All";
EFortCustomBodyType[EFortCustomBodyType["Deprecated"] = 8] = "Deprecated";
})(EFortCustomBodyType = exports.EFortCustomBodyType || (exports.EFortCustomBodyType = {}));