Android Open Source - Electric-Jump Desktop Launcher






From Project

Back to project page Electric-Jump.

License

The source code is released under:

Apache License

If you think the Android project Electric-Jump listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.earthshake.electricjump.desktop;
//w  ww.java2  s  .co m
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
import com.earthshake.electricjump.ActionResolver;
import com.earthshake.electricjump.EJGame;


public class DesktopLauncher implements ActionResolver{
  
  public static void main (String[] arg) {
    LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
    config.width = 580;
    config.height = 1000;
  //  config.width = EJGame.WIDTH/2;
  //  config.height = EJGame.HEIGHT/2;
    config.title = EJGame.title;
    
    new LwjglApplication(new EJGame(new DesktopLauncher()), config);
  }

  @Override
  public void showAds(boolean show) {
    // TODO Auto-generated method stub
    
  }

  @Override
  public void initSwarm() {
    // TODO Auto-generated method stub
    Gdx.app.log("asd", "sad");
  }

  @Override
  public void swarmSetActive(boolean setActive) {
    // TODO Auto-generated method stub
    
  }

  @Override
  public void startSmartWallAd() {
    // TODO Auto-generated method stub
    
  }

  @Override
  public void startLandPageAd() {
    // TODO Auto-generated method stub
    
  }
}




Java Source Code List

android.UnusedStub.java
com.earthshake.electricjump.ActionResolver.java
com.earthshake.electricjump.EJGame.java
com.earthshake.electricjump.GameScreen.java
com.earthshake.electricjump.MainMenuScreen.java
com.earthshake.electricjump.SplashScreen.java
com.earthshake.electricjump.android.AndroidLauncher.java
com.earthshake.electricjump.desktop.DesktopLauncher.java