| 381 | } |
| 382 | |
| 383 | std::optional<FixedString*> RPGStats::GetFixedString(int stringId) |
| 384 | { |
| 385 | if (stringId > 0) { |
| 386 | return &FixedStrings[stringId]; |
| 387 | } else { |
| 388 | return {}; |
| 389 | } |
| 390 | } |
| 391 | |
| 392 | FixedString* RPGStats::GetOrCreateFixedString(int& stringId) |
| 393 | { |