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