added health bar to monster

This commit is contained in:
2025-11-30 00:38:00 +01:00
parent 9aae9ad20f
commit 8ec1805877
3 changed files with 18 additions and 5 deletions

View File

@@ -24,6 +24,7 @@ public class Sound {
soundURL[4] = new File("assets/sounds/fanfare.wav").toURI().toURL();
soundURL[5] = new File("assets/sounds/hitmonster.wav").toURI().toURL();
soundURL[6] = new File("assets/sounds/receivedamage.wav").toURI().toURL();
soundURL[7] = new File("assets/sounds/blocked.wav").toURI().toURL();
} catch(MalformedURLException e) {
Boot.logger.log(Level.SEVERE, e.getMessage());
}