mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2025-01-06 11:29:19 +00:00
20 lines
282 B
C
20 lines
282 B
C
|
//
|
||
|
// TextLabel.h
|
||
|
// 2Term
|
||
|
//
|
||
|
// Created by Kelvin Sherlock on 7/7/2016.
|
||
|
//
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@interface TextLabel : NSView
|
||
|
{
|
||
|
NSString *_text;
|
||
|
NSColor *_color;
|
||
|
}
|
||
|
@property (nonatomic, retain) NSString *text;
|
||
|
@property (nonatomic, retain) NSColor *color;
|
||
|
|
||
|
@end
|