1
0
forked from akanyan/mu3-mods

feat: implement ExclusiveAudio

This commit is contained in:
2025-01-12 15:31:21 +00:00
parent 31fa3ce028
commit 7900fbbce9
15 changed files with 141 additions and 27 deletions

View File

@ -7,9 +7,7 @@ class patch_UserManager: UserManager {
private OnReset _onResetGP;
public new void resetGP() {
if(_onResetGP != null) {
_onResetGP(_gp);
}
_onResetGP?.Invoke(_gp);
}
public new int GP {
@ -17,9 +15,7 @@ class patch_UserManager: UserManager {
return _gp;
}
private set {
if(_onUpdateGP != null) {
_onUpdateGP(_gp);
}
_onUpdateGP?.Invoke(_gp);
}
}
public new bool checkBattleGP(int needed) {