Mineplex/GOD DAMN COSMETICS/gadget/set/suits/SetSpaceSuit.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

21 lines
797 B
Java

package mineplex.core.gadget.set.suits;
import mineplex.core.gadget.GadgetManager;
import mineplex.core.gadget.gadgets.outfit.spacesuit.OutfitSpaceSuitBoots;
import mineplex.core.gadget.gadgets.outfit.spacesuit.OutfitSpaceSuitChestplate;
import mineplex.core.gadget.gadgets.outfit.spacesuit.OutfitSpaceSuitHelmet;
import mineplex.core.gadget.gadgets.outfit.spacesuit.OutfitSpaceSuitLeggings;
import mineplex.core.gadget.types.GadgetSet;
public class SetSpaceSuit extends GadgetSet
{
public SetSpaceSuit(GadgetManager manager)
{
super(manager, "Space Suit", "Low Gravity",
manager.getGadget(OutfitSpaceSuitHelmet.class),
manager.getGadget(OutfitSpaceSuitChestplate.class),
manager.getGadget(OutfitSpaceSuitLeggings.class),
manager.getGadget(OutfitSpaceSuitBoots.class));
}
}