mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 06:53:36 +00:00
11 lines
396 B
C++
11 lines
396 B
C++
#include "AnimalChest.h"
|
|
|
|
#include "minecraft/world/SimpleContainer.h"
|
|
#include "strings.h"
|
|
|
|
AnimalChest::AnimalChest(const std::string& name, int size)
|
|
: SimpleContainer(IDS_CONTAINER_ANIMAL, name, false, size) {}
|
|
|
|
AnimalChest::AnimalChest(int iTitle, const std::string& name,
|
|
bool hasCustomName, int size)
|
|
: SimpleContainer(iTitle, name, hasCustomName, size) {} |