4jcraft/Minecraft.World/Containers/AnimalChest.cpp
Tropical f25cd66f4d TU19: merge Minecraft.World/Containers
keeping virtual destructors where possible
2026-03-21 15:18:52 -05:00

10 lines
364 B
C++

#include "../Platform/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) {}