Changeset 3665 for 2012/27


Ignore:
Timestamp:
2012-07-06 12:44:00 (11 years ago)
Author:
dezhidki
Message:

Talletus.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 2012/27/DenisZ/TheDungeonGame/TheDungeonGame/TheDungeonGame/InGameGui.cs

    r3649 r3665  
    1313        private TheDungeonGame game; 
    1414        private Widget inventoryItem; 
    15         public IntMeter bossHealth; 
    16         private BarGauge bossMeterBar; 
     15        public DoubleMeter bossHealth;  
     16        private BarGauge bossMeterBar; //TODO: Muuta ProgressBar:ksi 
    1717        
    1818 
     
    138138        public void setupBossGauge(EntityBase entity) 
    139139        { 
    140             bossHealth = new IntMeter(entity.health, 0, entity.health); 
     140            bossHealth = new DoubleMeter(entity.health, 0, entity.health); 
    141141 
    142142            bossMeterBar = new BarGauge(20, TheDungeonGame.Screen.Width / 4); 
Note: See TracChangeset for help on using the changeset viewer.