/**
* @param args
*/
public static void main(String[] args) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
config.fullscreen = true;
config.resizable = false;
config.title = "Fluid Simulator";
config.vSyncEnabled = false;
config.width = (int)Toolkit.getDefaultToolkit().getScreenSize().getWidth();