mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-01-11 22:40:19 +00:00
26 lines
No EOL
941 B
Objective-C
26 lines
No EOL
941 B
Objective-C
#import <YouTubeHeader/YTSettingsViewController.h>
|
|
#import <YouTubeHeader/YTSearchableSettingsViewController.h>
|
|
#import <YouTubeHeader/YTSettingsSectionItem.h>
|
|
#import <YouTubeHeader/YTSettingsSectionItemManager.h>
|
|
#import <YouTubeHeader/YTUIUtils.h>
|
|
#import <YouTubeHeader/YTSettingsPickerViewController.h>
|
|
#import "uYouPlus.h"
|
|
|
|
NSString *UYOUPLUS_RELEASES_URL = @"https://github.com/qnblackcat/uYouPlus/releases";
|
|
NSString *UYOUPLUS_NEW_ISSUE_URL = @"https://github.com/qnblackcat/uYouPlus/issues/new?assignees=&labels=bug&projects=&template=bug.yaml&title=[v%@] %@";
|
|
|
|
// For displaying snackbars
|
|
@interface YTHUDMessage : NSObject
|
|
+ (id)messageWithText:(id)text;
|
|
- (void)setAction:(id)action;
|
|
@end
|
|
|
|
@interface GOOHUDMessageAction : NSObject
|
|
- (void)setTitle:(NSString *)title;
|
|
- (void)setHandler:(void (^)(id))handler;
|
|
@end
|
|
|
|
@interface GOOHUDManagerInternal : NSObject
|
|
- (void)showMessageMainThread:(id)message;
|
|
+ (id)sharedInstance;
|
|
@end |