mirror of
https://github.com/Sunnyyoung/WeChatTweak-macOS.git
synced 2025-05-22 22:36:07 +08:00
26 lines
643 B
Objective-C
26 lines
643 B
Objective-C
//
|
|
// WeChatTweak.h
|
|
// WeChatTweak
|
|
//
|
|
// Created by Sunnyyoung on 2017/8/11.
|
|
// Copyright © 2017年 Sunnyyoung. All rights reserved.
|
|
//
|
|
|
|
#import "WeChatTweakHeaders.h"
|
|
|
|
FOUNDATION_EXPORT double WeChatTweakVersionNumber;
|
|
FOUNDATION_EXPORT const unsigned char WeChatTweakVersionString[];
|
|
|
|
typedef NS_ENUM(NSUInteger, WeChatTweakNotificationType) {
|
|
WeChatTweakNotificationTypeInherited = 0,
|
|
WeChatTweakNotificationTypeReceiveAll,
|
|
WeChatTweakNotificationTypeDisable
|
|
};
|
|
|
|
@interface WeChatTweak : NSObject
|
|
|
|
@property (class, assign) WeChatTweakNotificationType notificationType;
|
|
@property (class, nonnull) NSColor *maskColor;
|
|
|
|
@end
|