17 lines
400 B
JavaScript
17 lines
400 B
JavaScript
const StructureSpawn = require("StructureSpawn")
|
|
|
|
module.exports = {
|
|
setup(){},
|
|
|
|
begin(structure){
|
|
switch (structure.structureType) {
|
|
case STRUCTURE_SPAWN: StructureSpawn.begin(structure); break;
|
|
}
|
|
},
|
|
|
|
tick(structure){
|
|
switch (structure.structureType) {
|
|
case STRUCTURE_SPAWN: StructureSpawn.tick(structure); break;
|
|
}
|
|
}
|
|
} |