| 51 | } |
| 52 | |
| 53 | CRPGStats_Modifier * ModifierList::GetAttributeInfo(const char * name, int * attributeIndex) const |
| 54 | { |
| 55 | auto index = Attributes.FindIndex(name); |
| 56 | if (index == -1) { |
| 57 | return nullptr; |
| 58 | } |
| 59 | else { |
| 60 | *attributeIndex = index; |
| 61 | return Attributes.Find(index); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | bool CRPGStatsManager::ObjectExists(FixedString statsId, FixedString type) |
| 66 | { |
no test coverage detected