blob: 08826203e35c588e39586a69bf4fdcb5e77d0775 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// NSImage+NSImage_Badges.h
// Things Plugin
//
// Created by Ruben Beltran del Rio on 2025-09-12.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NSImage (Badge)
- (NSImage *)imageOfSize:(NSSize)size withSystemBadge:(NSString *)symbolName ofColor:(NSColor *)color;
@end
NS_ASSUME_NONNULL_END
|