Skip to content

Instantly share code, notes, and snippets.

@connorbrez
Created July 28, 2016 01:08
Show Gist options
  • Select an option

  • Save connorbrez/36f233e2fc19cc7e1d3e165cada27e6b to your computer and use it in GitHub Desktop.

Select an option

Save connorbrez/36f233e2fc19cc7e1d3e165cada27e6b to your computer and use it in GitHub Desktop.
package com.connorbrezinsky.spaceraiders.client.display;
import org.newdawn.slick.GameContainer;
import org.newdawn.slick.Graphics;
import org.newdawn.slick.SlickException;
import org.newdawn.slick.state.BasicGameState;
import org.newdawn.slick.state.StateBasedGame;
public class StateExample extends BasicGameState {
@Override
public void init(GameContainer arg0, StateBasedGame arg1) throws SlickException {
// TODO Auto-generated method stub
}
@Override
public void render(GameContainer arg0, StateBasedGame arg1, Graphics arg2) throws SlickException {
// TODO Auto-generated method stub
}
@Override
public void update(GameContainer arg0, StateBasedGame arg1, int arg2) throws SlickException {
// TODO Auto-generated method stub
}
@Override
public int getID() {
// TODO Auto-generated method stub
return 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment