Added FIXME to corresponding section.

This commit is contained in:
Deathsbreed 2014-05-27 08:21:20 -05:00
parent e19278dfec
commit 2cc5153497

View File

@ -50,6 +50,7 @@ public class SpaceShipSim extends JFrame implements Runnable, KeyListener {
start();
}
// FIXME: There are no errors in compilation or while running, but the menu bar does not appear
public void menuSetup() {
menuBar = new JMenuBar();
simulationMenu = new JMenu("Simulation");
@ -65,6 +66,7 @@ public class SpaceShipSim extends JFrame implements Runnable, KeyListener {
menuBar.add(simulationMenu);
this.setJMenuBar(menuBar);
}
// !!!FIXME-END!!!
public void start() {
gameloop = new Thread(this);