mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-09-23 11:06:34 +00:00
11 lines
398 B
C++
11 lines
398 B
C++
#include "AnimalChest.h"
|
|
|
|
#include "minecraft/world/SimpleContainer.h"
|
|
#include "strings.h"
|
|
|
|
AnimalChest::AnimalChest(const std::wstring& name, int size)
|
|
: SimpleContainer(IDS_CONTAINER_ANIMAL, name, false, size) {}
|
|
|
|
AnimalChest::AnimalChest(int iTitle, const std::wstring& name,
|
|
bool hasCustomName, int size)
|
|
: SimpleContainer(iTitle, name, hasCustomName, size) {} |