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