Package com.hobbitsadventure.model

Examples of com.hobbitsadventure.model.GameCharacter


          g.drawImage(thing.getSprite(), x, y, null);
         
        }
       
        // Paint character
        GameCharacter character = realmMap.getCharacter(rowIndex, colIndex);
        if (character != null) {
          if (thing != null) { y += thing.getYOffset(); }
          g.drawImage(character.getSprite(), x, y, null);
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.hobbitsadventure.model.GameCharacter

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.