namespace MU3.User; class patch_UserManager: UserManager { public new const int DefaultGP = 666; private int _gp; private OnUpdate _onUpdateGP; private OnReset _onResetGP; public new void resetGP() { _gp = 999; if(_onResetGP != null) { _onResetGP(_gp); } } public new int GP { get { return _gp; } private set { _gp = 999; if(_onUpdateGP != null) { _onUpdateGP(_gp); } } } }