tcr/java/src/game/inventory/AnimalChest.java
2025-03-12 18:13:11 +01:00

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);
}
}