mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2025-01-07 02:32:50 +00:00
19 lines
278 B
C
19 lines
278 B
C
|
//
|
||
|
// ColorView.h
|
||
|
// 2Term
|
||
|
//
|
||
|
// Created by Kelvin Sherlock on 12/20/2011.
|
||
|
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@interface ColorView : NSView
|
||
|
{
|
||
|
NSColor *_color;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic, retain) NSColor *color;
|
||
|
|
||
|
@end
|