wingbase/server/game/room/world/shot/bullet.js
2016-03-26 14:23:51 +00:00

11 lines
138 B
JavaScript

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