mirror of
https://github.com/zeldaret/botw
synced 2026-06-20 23:51:22 -04:00
uking/ui: Implement material sorting for inventory
This commit is contained in:
@@ -123,6 +123,14 @@ int getItemStainColor(InfoData* data, const char* actor) {
|
||||
return data->getInt(actor, "itemStainColor", -1);
|
||||
}
|
||||
|
||||
int getCureItemHitPointRecover(InfoData* data, const char* actor) {
|
||||
return data->getInt(actor, "cureItemHitPointRecover");
|
||||
}
|
||||
|
||||
int getCureItemHitPointRecover(const al::ByamlIter& iter) {
|
||||
return InfoData::getIntByKey(iter, "cureItemHitPointRecover");
|
||||
}
|
||||
|
||||
int getMonsterShopSellMamo(const al::ByamlIter& iter) {
|
||||
return InfoData::getIntByKey(iter, "monsterShopSellMamo");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user