mirror of
https://github.com/songoda/UltimateStacker.git
synced 2024-11-13 05:44:19 +01:00
Remove unnecessary class
This commit is contained in:
parent
16e61d82f0
commit
250435cfa0
@ -1,13 +1,13 @@
|
||||
package com.craftaro.ultimatestacker.api.stack.entity;
|
||||
|
||||
import com.craftaro.ultimatestacker.api.utils.StackableEntity;
|
||||
import com.craftaro.ultimatestacker.api.utils.Stackable;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.entity.EntityType;
|
||||
import org.bukkit.entity.LivingEntity;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
public interface EntityStack extends StackableEntity {
|
||||
public interface EntityStack extends Stackable {
|
||||
|
||||
|
||||
EntityType getType();
|
||||
|
@ -1,9 +1,9 @@
|
||||
package com.craftaro.ultimatestacker.api.stack.item;
|
||||
|
||||
import com.craftaro.ultimatestacker.api.utils.StackableEntity;
|
||||
import com.craftaro.ultimatestacker.api.utils.Stackable;
|
||||
import org.bukkit.entity.Item;
|
||||
|
||||
public interface StackedItem extends StackableEntity {
|
||||
public interface StackedItem extends Stackable {
|
||||
|
||||
/**
|
||||
* Get the Item entity for this StackedItem
|
||||
|
@ -1,14 +0,0 @@
|
||||
package com.craftaro.ultimatestacker.api.utils;
|
||||
|
||||
public interface StackableEntity {
|
||||
|
||||
int getAmount();
|
||||
|
||||
void setAmount(int amount);
|
||||
|
||||
void add(int amount);
|
||||
|
||||
void take(int amount);
|
||||
|
||||
//int getMaxStackSize();
|
||||
}
|
Loading…
Reference in New Issue
Block a user