10 lines
160 B
Objective-C
10 lines
160 B
Objective-C
/* ClickField */
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "SoundController.h"
|
|
|
|
@interface ClickField : NSTextField
|
|
{
|
|
IBOutlet SoundController *soundController;
|
|
}
|
|
@end
|