1
0
forked from akanyan/mu3-mods
Files
mu3-mods/NaiveRating/MU3.SceneObject/patch_ANM_CMN_User.cs
akanyan 23331f8d56 feat: a decent rating selector?
Except it shows an arrow to the right when it shouldn't
2024-12-21 05:32:50 +00:00

13 lines
338 B
C#

using MU3.CustomUI;
namespace MU3.SceneObject;
class patch_ANM_CMN_UserDeta_01: ANM_CMN_UserDeta_01 {
private MU3UICounter rating;
public extern void orig_setUserDetail();
public new void setUserDetail() {
((patch_MU3UICounter)rating).isDispSuffix = NaiveRating.IsEnabled();
orig_setUserDetail();
}
}