initial commit
This commit is contained in:
parent
3c9ee26b06
commit
22186c33b9
1458 changed files with 282792 additions and 0 deletions
14
java/src/game/inventory/AnimalChest.java
Executable file
14
java/src/game/inventory/AnimalChest.java
Executable file
|
@ -0,0 +1,14 @@
|
|||
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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue