12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
module.exports = {
|
|
// Gets called when recompiling and when Restart command is called.
|
|
start: function () {
|
|
global.ClearConstructions = clearConstructions;
|
|
}
|
|
}
|
|
|
|
function clearConstructions(){
|
|
|
|
}
|
|
|