14 lines
333 B
Java
Executable file
14 lines
333 B
Java
Executable file
package game.inventory;
|
|
|
|
public class AnimalChest extends InventoryBasic
|
|
{
|
|
public AnimalChest(String inventoryName, int slotCount)
|
|
{
|
|
super(inventoryName, false, slotCount);
|
|
}
|
|
|
|
public AnimalChest(String invTitle, boolean customName, int slotCount)
|
|
{
|
|
super(invTitle, customName, slotCount);
|
|
}
|
|
}
|