Package character

Examples of character.DefaultCharacter


   * Draw every characters.
   * @param g the graphics to draw on
   */
  public void drawCharacters(Graphics g) {
    ImageIcon c_image;
    DefaultCharacter c_char;
    for(Character c : characters)
    {
      c_char = (DefaultCharacter) c;
      c_image = c_char.updatePos();
        g.drawImage(c_image.getImage(), (int) c_char.locX(), (int) c_char.locY(), null);
    }
  }
View Full Code Here

TOP

Related Classes of character.DefaultCharacter

Copyright © 2018 www.massapicom. 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.