add robust fixture rendering
This commit is contained in:
parent
ef2d067b38
commit
cf4e8024af
13 changed files with 140 additions and 64 deletions
15
server/game/room/world/body/turret/grapple.js
Normal file
15
server/game/room/world/body/turret/grapple.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
'use strict';
|
||||
|
||||
const Fixture = require('./fixture.js');
|
||||
|
||||
class Grapple extends Fixture {
|
||||
constructor(mount, data) {
|
||||
super(mount, data);
|
||||
}
|
||||
|
||||
fire() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Grapple;
|
Loading…
Add table
Add a link
Reference in a new issue