예제 #1
0
파일: BlockID.cpp 프로젝트: 36451/MCServer
AString ItemTypeToString(short a_ItemType)
{
	if (!gsBlockIDMap.m_bHasRunInit)
	{
		gsBlockIDMap.init();
	}
	return gsBlockIDMap.Desolve(a_ItemType, -1);
}
예제 #2
0
파일: BlockID.cpp 프로젝트: 36451/MCServer
AString ItemToString(const cItem & a_Item)
{
	if (!gsBlockIDMap.m_bHasRunInit)
	{
		gsBlockIDMap.init();
	}
	return gsBlockIDMap.Desolve(a_Item.m_ItemType, a_Item.m_ItemDamage);
}
예제 #3
0
파일: BlockID.cpp 프로젝트: Xury/MCServer
AString ItemTypeToString(short a_ItemType)
{
	return gsBlockIDMap.Desolve(a_ItemType, -1);
}
예제 #4
0
파일: BlockID.cpp 프로젝트: Xury/MCServer
AString ItemToString(const cItem & a_Item)
{
	return gsBlockIDMap.Desolve(a_Item.m_ItemType, a_Item.m_ItemDamage);
}