Rewriting from scratch. Fixing old code is just less fun.

This commit is contained in:
DouweRavers
2022-04-29 01:45:27 +02:00
parent 5494f6fb17
commit 3e962ed04a
15 changed files with 159 additions and 974 deletions

View File

@@ -1,19 +0,0 @@
/**
* Basis of the entire system. Everything will be managed from here on out.
*/
const commands = require("commands");
const creeps = require("creeps")
module.exports = {
// Gets called when recompiling and when Restart command is called.
start: function () {
commands.configure();
creeps.configure();
},
// Gets called every tick.
update: function () {
creeps.execute();
}
}