13 lines
263 B
Objective-C
13 lines
263 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface WarpDockTilePlugIn : NSObject <NSDockTilePlugIn>
|
|
{
|
|
id iconChangedObserver;
|
|
id defaultsObserver;
|
|
}
|
|
|
|
@property(strong) id iconChangedObserver;
|
|
@property(strong) id defaultsObserver;
|
|
@end
|