fix: set PlayerLives default to 3, use resource for HUD lives count in top left

yes I am fully aware that the UP is not the player lives, I'm just
wanting the indicator to be somewhere and I'll make the proper indicator
tomorrow probably
This commit is contained in:
Ryan Walters
2025-09-08 01:23:00 -05:00
parent 44f0b5d373
commit e87d458121
4 changed files with 6 additions and 5 deletions

View File

@@ -78,7 +78,7 @@ pub struct PlayerLives(pub u8);
impl Default for PlayerLives {
fn default() -> Self {
Self(1)
Self(3)
}
}