Skip to content

Commit

Permalink
Basic credits screen
Browse files Browse the repository at this point in the history
  • Loading branch information
sreese25 committed Apr 8, 2012
1 parent a5194c5 commit 978a022
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/com/vulcastudios/states/CreditsState.java
Expand Up @@ -21,8 +21,13 @@ public void init(GameContainer container, StateBasedGame game)
@Override
public void render(GameContainer container, StateBasedGame game, Graphics g)
throws SlickException {
g.drawString("credits", 50, 50);
g.drawString("press esc to return to the main menu", 50, 100);
g.drawString("Alex Meade", 50, 50);
g.drawString("Forrest Meade", 50, 75);
g.drawString("Andrew Melton", 50, 100);
g.drawString("Taylor Paschal", 50, 125);
g.drawString("Stephanie Reese", 50, 150);
g.drawString("Sam Thomas", 50, 175);
g.drawString("press esc to return to the main menu", 50, 225);
}

@Override
Expand Down

0 comments on commit 978a022

Please sign in to comment.