screep/init.js

12 lines
164 B
JavaScript
Raw Normal View History

2020-10-18 22:00:22 +08:00
module.exports = {
2020-10-20 17:09:06 +08:00
init() {
if (!Memory.Source) {
Memory.Source = new Object();
Memory.Source.Energy = [];
2020-10-18 22:00:22 +08:00
}
}
2020-10-20 17:09:06 +08:00
}