Assets.Scripts.Services.LootItems.AdrenalineShot.AdrenalineShot C# (CSharp) Method

AdrenalineShot() public method

public AdrenalineShot ( string name, Sprite iconSprite, int hypePowerValue, System.TimeSpan effectDuration ) : System
name string
iconSprite UnityEngine.Sprite
hypePowerValue int
effectDuration System.TimeSpan
return System
        public AdrenalineShot(string name, Sprite iconSprite, int hypePowerValue, TimeSpan effectDuration) 
            : base(name, iconSprite, effectDuration)
        {
            itemSubType = LootItemSubType.ADRENALINE_SHOT;
            this.hypePowerValue = hypePowerValue;
        }
    }
AdrenalineShot