Decomp ItemManager::HasTreasurePriceShown

This commit is contained in:
Aetias
2024-04-30 19:18:07 +02:00
parent 5d7c46a975
commit 75f492f8c6
2 changed files with 4 additions and 25 deletions
+4
View File
@@ -973,3 +973,7 @@ THUMB bool ItemManager::HasShipPartPriceShown(ShipPart part, ShipType type) cons
THUMB void ItemManager::AddShipPartPriceShown(ShipPart part, ShipType type) {
SET_FLAG(mShipPartPricesShown.flags, part * ShipType_COUNT + type);
}
THUMB bool ItemManager::HasTreasurePriceShown(Treasure treasure) const {
return GET_FLAG(mTreasurePriceShownFlags, treasure);
}