mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-07-19 11:37:06 +00:00
10 lines
377 B
C++
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) {} |