mirror of
https://github.com/Sunnyyoung/WeChatTweak-macOS.git
synced 2025-07-08 00:26:06 +08:00
20 lines
313 B
Objective-C
20 lines
313 B
Objective-C
//
|
|
// TweakColorView.h
|
|
// WeChatTweak
|
|
//
|
|
// Created by Jeason Lee on 2019/11/1.
|
|
// Copyright © 2019 Sunnyyoung. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface TweakColorView : NSView
|
|
|
|
@property (nonatomic, strong) NSColor *backgroundColor;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|