'use strict'; const Body = require('../body.js'); class Projectile extends Body { constructor(world) { super(world); } } module.exports = Projectile;