1
0
forked from akanyan/mu3-mods

feat: reachable rating

This commit is contained in:
2024-12-23 18:11:33 +00:00
parent 57d7be2bfb
commit 8c532260b3
15 changed files with 139 additions and 109 deletions

View File

@ -1,11 +1,13 @@
namespace MU3.CustomUI;
using MU3.Mod;
namespace MU3.CustomUI;
class patch_MU3UICounter: MU3UICounter {
protected extern void orig_calcNumFiguresFloat(double value);
protected new void calcNumFiguresFloat(double value) {
orig_calcNumFiguresFloat(value);
if(isDispSuffix) {
pushFigureFront(10);
pushFigureFront(CustomRating.GetSuffix());
}
}
public bool isDispSuffix { get; set; }