sparkscript
Version:
DiamondFire for Javascript.
15 lines • 555 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const components_1 = require("../core/components");
class SelectObject extends components_1.SubActionBlock {
/**
* Select an object (Entities, Items, ..etc).
* @param condition Condition to select by.
* @param args Arguments to pass specified by the chosen condition.
*/
constructor(condition, ...args) {
super("select_obj", condition, "(unimplemented)", args);
}
}
exports.default = SelectObject;
//# sourceMappingURL=SelectObject.js.map