From dcb094b4042b66e49d3bb552a727d38096770266 Mon Sep 17 00:00:00 2001 From: arichornlover <78001398+arichorn@users.noreply.github.com> Date: Sun, 24 Dec 2023 09:50:52 -0600 Subject: [PATCH] New Headers New Headers that may be important later on. --- uYouPlus.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/uYouPlus.h b/uYouPlus.h index b8ccec6..57a665b 100644 --- a/uYouPlus.h +++ b/uYouPlus.h @@ -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