forked from akanyan/mu3-mods
feat: implement ExclusiveAudio
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user