4jcraft/Minecraft.World/net/minecraft/world/inventory/AnimalChest.cpp

10 lines
377 B
C++

#include "../../../../Header Files/stdafx.h"
#include "AnimalChest.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) {}