Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. private Image theImage;
  2. private AngelCodeFont font;
  3.  
  4. public HUD() {
  5. try {
  6. theImage = new Image("res/BerlinSans.png", false, Image.FILTER_NEAREST);
  7. font = new AngelCodeFont("res/BerlinSans.fnt", theImage);
  8. } catch (SlickException ex) {
  9. Logger.getLogger(HUD.class.getName()).log(Level.SEVERE, null, ex);
  10. }
  11. }
  12.  
  13. public void write(int x, int y, String string) {
  14. font.drawString(x, y, string);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement