use of com.gushikustudios.rube.RubeLoaderTest in project RubeLoader by tescott.
the class RubeLoaderTestDesktop method mainLaunch.
/**
* @param args
*/
public static void mainLaunch(int width, int height) {
LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();
cfg.title = GAME_NAME;
cfg.useGL20 = true;
cfg.width = width;
cfg.height = height;
new LwjglApplication(new RubeLoaderTest(), cfg);
}
use of com.gushikustudios.rube.RubeLoaderTest in project RubeLoader by tescott.
the class MainActivity method onCreate.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
AndroidApplicationConfiguration cfg = new AndroidApplicationConfiguration();
initialize(new RubeLoaderTest(true), cfg);
}
use of com.gushikustudios.rube.RubeLoaderTest in project RubeLoader by tescott.
the class RubeLoaderTestDesktop method mainLaunch.
/**
* @param args
*/
public static void mainLaunch(int width, int height, boolean useAssetManager, int rubeListIndex) {
LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();
cfg.title = GAME_NAME;
cfg.width = width;
cfg.height = height;
new LwjglApplication(new RubeLoaderTest(useAssetManager, rubeListIndex), cfg);
}
Aggregations