@screeps/engine
Version:
This is a module for Screeps standalone server. See [main repository](https://github.com/screeps/screeps) for more info.
12 lines (7 loc) • 587 B
JavaScript
;
module.exports = function (object, objectIntents, scope) {
if (objectIntents.boostCreep) require('./boost-creep')(object, objectIntents.boostCreep, scope);
if (objectIntents.unboostCreep) require('./unboost-creep')(object, objectIntents.unboostCreep, scope);
if (objectIntents.runReaction) require('./run-reaction')(object, objectIntents.runReaction, scope);else if (objectIntents.reverseReaction) require('./reverse-reaction')(object, objectIntents.reverseReaction, scope);
};
//# sourceMappingURL=../../../sourcemaps/processor/intents/labs/intents.js.map