mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 07:30:40 +00:00
20 lines
274 B
C
20 lines
274 B
C
|
//
|
||
|
// CurveView.h
|
||
|
// 2Term
|
||
|
//
|
||
|
// Created by Kelvin Sherlock on 7/8/2010.
|
||
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
|
||
|
@interface CurveView : NSView {
|
||
|
|
||
|
NSColor *_color;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic, retain) NSColor *color;
|
||
|
|
||
|
@end
|