Skip to content

Instantly share code, notes, and snippets.

@NimbusBP1729
Last active August 29, 2015 13:56
Show Gist options
  • Save NimbusBP1729/9211203 to your computer and use it in GitHub Desktop.
Save NimbusBP1729/9211203 to your computer and use it in GitHub Desktop.
public class MyFirstScreen implements Screen {
private Game game;
public MyFirstScreen(Game game) {
this.game = game;
}
}
public class MyGame extends Game {
@Override
public void create() {
setScreen(new MyFirstScreen(this));
}
}
@Tom-Ski
Copy link

Tom-Ski commented Feb 25, 2014

Boo, wheres my website

@NimbusBP1729
Copy link
Author

link it. I like to advertise for people.

@ocirne23
Copy link

dat indent

@NimbusBP1729
Copy link
Author

lazy indent is worst indent.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment