Mineplex/GOD DAMN COSMETICS/gadget/gadgets/Ammo.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

17 lines
455 B
Java

package mineplex.core.gadget.gadgets;
import mineplex.core.shop.item.SalesPackageBase;
import org.bukkit.Material;
public class Ammo extends SalesPackageBase
{
public Ammo(String name, String displayName, Material material, byte displayData, String[] description, int coins, int quantity)
{
super(name, material, displayData, description, coins, quantity);
DisplayName = displayName;
KnownPackage = false;
OneTimePurchaseOnly = false;
}
}