Package com.supercookie.deathrace

Source Code of com.supercookie.deathrace.DeathRaceDesktop

package com.supercookie.deathrace;

import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;

public class DeathRaceDesktop {

    public static void main(String[] args) {
        LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();
        cfg.title = "Outrun";
        cfg.width = 853;
        cfg.height = 480;
        new LwjglApplication(new DeathRaceGame(), cfg);
    }
}
TOP

Related Classes of com.supercookie.deathrace.DeathRaceDesktop

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.