blob: 42729c92e6dd7643f83c063d224a93dfd02ce2f2 (
plain)
1
2
3
4
5
6
7
8
9
10
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)
{
}
|