This commit is contained in:
ShyMemoriees
2019-12-13 15:45:49 +01:00
parent edbbb89b15
commit 848e30d228
63 changed files with 418 additions and 18 deletions

View File

@ -39,6 +39,36 @@ void playSound() {
%end
%hook SBIconController
-(void)_forceTouchControllerWillPresent:(id)arg1 {
%orig;
if (enabled) {
playSound();
}
}
%end
%hook SBIconController
-(void)_iconForceTouchControllerWillPresent:(id)arg1 {
%orig;
if (enabled) {
playSound();
}
}
%end
%end
%ctor {