17 lines
252 B
JavaScript
17 lines
252 B
JavaScript
module.exports = {
|
|
setup: function () {
|
|
Creep.prototype = _Creep.prototype;
|
|
global.Role = Role;
|
|
}
|
|
}
|
|
|
|
const Role = {
|
|
HARVESTER: 0
|
|
}
|
|
|
|
module.exports = {
|
|
setup: function () { Creep.prototype = _Creep.prototype; }
|
|
}
|
|
|
|
class _Creep extends Creep {}
|