Skip to content

Instantly share code, notes, and snippets.

@Tom-Ski
Created April 4, 2014 19:40
Show Gist options
  • Save Tom-Ski/9981751 to your computer and use it in GitHub Desktop.
Save Tom-Ski/9981751 to your computer and use it in GitHub Desktop.
exit
addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(WindowEvent e) {
Runtime.getRuntime().addShutdownHook(new Thread() {
public void run() {
Runtime.getRuntime().halt(0);
}
});
Gdx.app.exit();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment