Mineplex/GOD DAMN COSMETICS/gadget/set/suits/SetFreezeSuit.java
Daniel Waggner 38a20f98c2 Removed Files
These two directories contain code that was removed from the src and dependencies of the compiled files. They were removed due to being either a. unnecessary or b. a royal pain in my booty.
2021-05-23 18:13:37 -07:00

23 lines
879 B
Java

package mineplex.core.gadget.set.suits;
import mineplex.core.gadget.GadgetManager;
import mineplex.core.gadget.gadgets.outfit.freezesuit.OutfitFreezeSuitBoots;
import mineplex.core.gadget.gadgets.outfit.freezesuit.OutfitFreezeSuitChestplate;
import mineplex.core.gadget.gadgets.outfit.freezesuit.OutfitFreezeSuitHelmet;
import mineplex.core.gadget.gadgets.outfit.freezesuit.OutfitFreezeSuitLeggings;
import mineplex.core.gadget.types.GadgetSet;
public class SetFreezeSuit extends GadgetSet
{
public SetFreezeSuit(GadgetManager manager)
{
super(manager, "Freeze Suit", "Grants the wearer a \"snow aura\" and the ability to summon a bridge of ice.",
manager.getGadget(OutfitFreezeSuitHelmet.class),
manager.getGadget(OutfitFreezeSuitChestplate.class),
manager.getGadget(OutfitFreezeSuitLeggings.class),
manager.getGadget(OutfitFreezeSuitBoots.class));
}
}