Created
April 4, 2014 19:40
-
-
Save Tom-Ski/9981751 to your computer and use it in GitHub Desktop.
exit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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