New Headers

New Headers that may be important later on.
This commit is contained in:
arichornlover 2023-12-24 09:50:52 -06:00 committed by GitHub
parent f1f11aac2e
commit dcb094b404
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -252,3 +252,19 @@
@interface settingsReorderTable : UIViewController
@property(nonatomic, strong) UITableView *tableView;
@end
// Snack bar
@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