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

16
_system.js Normal file
View File

@@ -0,0 +1,16 @@
/**
* 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();
}
}