
/* Simple Sound Demo Program */

#import <objc/Object.h>
#import <appkit/appkit.h>
#import <soundkit/Sound.h>

@interface Guesser:Object
{
    int	real_num;
    
    id	too_low;
    id	too_high;
    id	just_right;
    id	instructions;
    
    id	input_textfield;
}

+ new;
- setInput_textfield:anObject;
- newGame:sender;
- guess:sender;

@end
