Decomp ItemManager::GetTreasureCount

This commit is contained in:
Aetias
2024-02-18 11:41:18 +01:00
parent 2c46503ca1
commit 64aea4ed32
2 changed files with 4 additions and 9 deletions
+4
View File
@@ -288,3 +288,7 @@ THUMB void ItemManager::SetShipPartCount(ShipPart part, ShipType type, s8 count)
if (count > 99) count = 99;
this->mShipParts[part][type] = count;
}
THUMB s8 ItemManager::GetTreasureCount(Treasure treasure) const {
return this->mTreasure[treasure];
}