public static void loadTexture(){
try {
gunPowder = TextureLoader.getTexture("PNG", ResourceLoader.getResourceAsStream("res/gunpowder.png"));
diamond = TextureLoader.getTexture("PNG", ResourceLoader.getResourceAsStream("res/diamond.png"));
Font awtFont = new Font("Times New Roman", Font.BOLD, 24);
gpFont = new TrueTypeFont(awtFont, true);
dFont = new TrueTypeFont(awtFont, true);
} catch (IOException e) {
e.printStackTrace();
}
}