add asteroids
This commit is contained in:
parent
0ceea5f4af
commit
0aa259b874
17 changed files with 246 additions and 37 deletions
13
server/game/room/world/structure.js
Normal file
13
server/game/room/world/structure.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
'use strict';
|
||||
|
||||
const Body = require('./body.js');
|
||||
|
||||
class Fixture extends Body {
|
||||
constructor(player) {
|
||||
super();
|
||||
|
||||
this.type = 'static';
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Ship;
|
Loading…
Add table
Add a link
Reference in a new issue