the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 11 lines 311 B view raw
1#include "stdafx.h" 2 3#include "AnimalChest.h" 4 5AnimalChest::AnimalChest(const wstring &name, int size) : SimpleContainer(IDS_CONTAINER_ANIMAL, name, false, size) 6{ 7} 8 9AnimalChest::AnimalChest(int iTitle, const wstring &name, bool hasCustomName, int size) : SimpleContainer(iTitle, name, hasCustomName, size) 10{ 11}