Skip to content
Snippets Groups Projects
ExtraLifePowerUp.java 246 B
Newer Older
  • Learn to ignore specific revisions
  • Max Wittig's avatar
    Max Wittig committed
    package de.bricked.game.powerups;
    
    
    public class ExtraLifePowerUp extends PowerUp
    {
    
    
        public ExtraLifePowerUp()
    
    Max Wittig's avatar
    Max Wittig committed
        {
    
            super(PowerUpType.valueOf("EXTRA_LIFE").getId(), -1);
    
    Max Wittig's avatar
    Max Wittig committed
        }
    
        @Override
    
        public void activate()
    
    Max Wittig's avatar
    Max Wittig committed
        {
    
        }
    }