Create AppIconManager.h

This commit is contained in:
arichornlover 2024-06-16 21:30:14 -05:00 committed by GitHub
parent 8e417b7cde
commit 9501445c19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

8
Sources/AppIconManager.h Normal file
View file

@ -0,0 +1,8 @@
#import <Foundation/Foundation.h>
@interface AppIconManager : NSObject
+ (void)setIcon:(NSString *)appIcon completion:(void (^)(BOOL))completion;
+ (void)doesNotSupport;
@end