| 22 | } |
| 23 | |
| 24 | void USlashOverlay::SetGold(int32 Gold) |
| 25 | { |
| 26 | if (GoldText) |
| 27 | { |
| 28 | const FString String = FString::Printf(TEXT("%d"), Gold); |
| 29 | const FText Text = FText::FromString(String); |
| 30 | GoldText->SetText(Text); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | void USlashOverlay::SetSouls(int32 Souls) |
| 35 | { |
no outgoing calls
no test coverage detected