16 lines
239 B
Objective-C
16 lines
239 B
Objective-C
//
|
|
// ScrollableTextField.h
|
|
// Cog
|
|
//
|
|
// Created by Vincent Spader on 4/30/06.
|
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface DragScrollView : NSScrollView {
|
|
NSPoint downPoint;
|
|
}
|
|
|
|
@end
|