- Timestamp:
- 2012-07-06 12:44:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
2012/27/DenisZ/TheDungeonGame/TheDungeonGame/TheDungeonGame/InGameGui.cs
r3649 r3665 13 13 private TheDungeonGame game; 14 14 private Widget inventoryItem; 15 public IntMeter bossHealth;16 private BarGauge bossMeterBar; 15 public DoubleMeter bossHealth; 16 private BarGauge bossMeterBar; //TODO: Muuta ProgressBar:ksi 17 17 18 18 … … 138 138 public void setupBossGauge(EntityBase entity) 139 139 { 140 bossHealth = new IntMeter(entity.health, 0, entity.health);140 bossHealth = new DoubleMeter(entity.health, 0, entity.health); 141 141 142 142 bossMeterBar = new BarGauge(20, TheDungeonGame.Screen.Width / 4);
Note: See TracChangeset
for help on using the changeset viewer.