* Init input system.
* @return true on success and false otherwise
*/
private static boolean initInput() {
try {
inputSystem = new LwjglInputSystem();
inputSystem.startup();
return true;
} catch (Exception e) {
e.printStackTrace();
log.warning("Unable to create keyboard!, exiting...");