wingbase/server/game/room/world/body/turret/shot/bullet.js
2016-03-27 15:08:49 +01:00

11 lines
138 B
JavaScript

'use strict';
const Shot = require('./shot.js');
class Bullet extends Shot {
constructor() {
super();
}
}
module.exports = Bullet;