| 520 | RPGStats::VMTMappings RPGStats::sVMTMappings; |
| 521 | |
| 522 | void RPGStats::VMTMappings::Update() |
| 523 | { |
| 524 | if (VMTsMapped) return; |
| 525 | auto stats = GetStaticSymbols().GetStats(); |
| 526 | |
| 527 | if (stats->Objects.Values.Size() > 0) { |
| 528 | ObjectVMT = stats->Objects.Values[0]->VMT; |
| 529 | } |
| 530 | |
| 531 | VMTsMapped = true; |
| 532 | } |
| 533 | |
| 534 | Functors* RPGStats::ConstructFunctorSet(FixedString const& propertyName) |
| 535 | { |
no test coverage detected