// DO not edit this type
type Game = {
  mute: () => void;
  unmute: () => void;
  ship: {
    x: number;
    y: number;
    height: number
    width: number;
    moveLeft: () => void;
    moveRight: () => void;
    fire: () => void;
  }
}

export function solution(game: Game) {
  // TODO - uncomment next line
  // game.ship.fire();
}