wingbase/public/js/starbugs/world/asteroid.js
2016-03-25 16:41:15 +00:00

15 lines
181 B
JavaScript

class Asteroid extends Body {
constructor(data) {
super(data)
this.bodyType = 'asteroid';
this.debug = 0;
}
updateType(data) {
this.debug = data[6];
}
tick() {
}
}