forked from akanyan/mu3-mods
akanyan
42cf65bdb7
* DisableEncryption * LoadBoost * UnlockFrameRate * UnlockMasterDifficulty WIP, not fully reviewed/tested yet.
12 lines
205 B
C#
12 lines
205 B
C#
namespace MU3.Notes;
|
|
|
|
class patch_NotesManager: NotesManager {
|
|
private float _frame;
|
|
|
|
private float _frameReal;
|
|
|
|
private void progressFrameAndFrameReal() {
|
|
_frame = _frameReal;
|
|
}
|
|
}
|