Created
July 28, 2016 01:08
-
-
Save connorbrez/36f233e2fc19cc7e1d3e165cada27e6b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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