aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/AnimalChest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/AnimalChest.cpp')
-rw-r--r--Minecraft.World/AnimalChest.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/Minecraft.World/AnimalChest.cpp b/Minecraft.World/AnimalChest.cpp
new file mode 100644
index 00000000..42729c92
--- /dev/null
+++ b/Minecraft.World/AnimalChest.cpp
@@ -0,0 +1,11 @@
+#include "stdafx.h"
+
+#include "AnimalChest.h"
+
+AnimalChest::AnimalChest(const wstring &name, int size) : SimpleContainer(IDS_CONTAINER_ANIMAL, name, false, size)
+{
+}
+
+AnimalChest::AnimalChest(int iTitle, const wstring &name, bool hasCustomName, int size) : SimpleContainer(iTitle, name, hasCustomName, size)
+{
+} \ No newline at end of file