1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | struct ITEM_INFO { int m_itemType; int m_location; unsigned int m_itemIndex; int m_wearLocation; int m_num; int m_price; int m_realPrice; int m_slot[4]; std::basic_string<char,std::char_traits<char>,std::allocator<char> > m_itemName; char m_isIdentified; char m_isDamaged; int m_refiningLevel; unsigned __int16 m_isYours; int m_deleteTime; }; |