Hi,I need to create a struct that can be used as a Key in a hashtable.
So far I made this:struct Item{ GS::UInt8 parentId; GS::UInt8 itemId;
const GS::UInt8 hash = this->parentId + this->itemId; GS::ULong
Item::GenerateHashValue() { return GS::Genera...