Working on the beginnings of a shared library

This commit is contained in:
2018-10-18 17:49:41 +11:00
parent d50b3e2ef5
commit 9b627d3581
8 changed files with 594 additions and 0 deletions

9
Shared/shared.js Normal file
View File

@@ -0,0 +1,9 @@
//initialize the exports
exports = module.exports = {};
exports = Object.assign(exports, require("./factions.js"));
exports = Object.assign(exports, require("./inventory.js"));
exports = Object.assign(exports, require("./messaging.js"));
exports = Object.assign(exports, require("./progression.js"));
exports = Object.assign(exports, require("./utility.js"));