13 lines
168 B
JavaScript
13 lines
168 B
JavaScript
'use strict';
|
|
|
|
const Body = require('./body.js');
|
|
|
|
class Fixture extends Body {
|
|
constructor(player) {
|
|
super();
|
|
|
|
this.type = 'static';
|
|
}
|
|
}
|
|
|
|
module.exports = Ship;
|