unreal.js
Version:
A pak reader for games like VALORANT & Fortnite written in Node.JS
33 lines (32 loc) • 843 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.USimpleConstructionScript = void 0;
const UObject_1 = require("./UObject");
/**
* USimpleConstructionScript
* @extends {UObject}
*/
class USimpleConstructionScript extends UObject_1.UObject {
constructor() {
super(...arguments);
/**
* Root nodes
* @type {Array<USCS_Node>}
* @public
*/
this.RootNodes = null;
/**
* All nodes
* @type {Array<USCS_Node>}
* @public
*/
this.AllNodes = null;
/**
* Default scene root node
* @type {USCS_Node}
* @public
*/
this.DefaultSceneRootNode = null;
}
}
exports.USimpleConstructionScript = USimpleConstructionScript;