mirror of
https://github.com/NohamR/Tweaks.git
synced 2026-05-25 04:17:15 +00:00
12 lines
174 B
Plaintext
12 lines
174 B
Plaintext
#import <substrate.h>
|
|
|
|
%hook UnlockEverythingManager
|
|
- (BOOL)haveUnlockedEverything {
|
|
return TRUE;
|
|
}
|
|
|
|
- (void)setHaveUnlockedEverything:(BOOL)unlocked {
|
|
%orig(YES);
|
|
}
|
|
%end
|