Files
screeps/_system.js

17 lines
324 B
JavaScript

/**
* Basis of the entire system. Everything will be managed from here on out.
*/
const rooms = require("_rooms")
module.exports = {
// Gets called when recompiling and when Restart command is called.
start: function () {
rooms.start();
},
// Gets called every tick.
update: function () {
rooms.update();
}
}