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