Examples of SavedState


Examples of org.newdawn.slick.SavedState

 
  /**
   * @see org.newdawn.slick.Game#init(org.newdawn.slick.GameContainer)
   */
  public void init(GameContainer container) throws SlickException {
    state = new SavedState("testdata");
    nameValue = state.getString("name","DefaultName");
    ageValue = (int) state.getNumber("age",64);
   
    name = new TextField(container,container.getDefaultFont(),100,100,300,20,this);
    age = new TextField(container,container.getDefaultFont(),100,150,201,20,this);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.