akanyan
42cf65bdb7
* DisableEncryption * LoadBoost * UnlockFrameRate * UnlockMasterDifficulty WIP, not fully reviewed/tested yet.
14 lines
244 B
C#
14 lines
244 B
C#
using MonoMod;
|
|
|
|
namespace MU3.ViewData;
|
|
|
|
[MonoModPatch("global::MU3.ViewData.MusicViewData")]
|
|
public class patch_MusicViewData {
|
|
public bool isMasterLock {
|
|
get {
|
|
return false;
|
|
}
|
|
set { /* nop */ }
|
|
}
|
|
}
|