forked from akanyan/mu3-mods
feat: reachable rating
This commit is contained in:
@ -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; }
|
||||
|
Reference in New Issue
Block a user