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