Example #1
0
bool cItems::ContainsType(const cItem & a_Item)
{
	for (auto itr : *this)
	{
		if (a_Item.IsSameType(itr))
		{
			return true;
		}
	}
	return false;
}