1 /* GoToStep */
2 
3 #import "GenericSheet.h"
4 
5 @interface GoToStep : GenericSheet
6 {
7     IBOutlet id okButton;
8     IBOutlet NSTextField *stepField;
9 
10 	int step;
11 }
12 
13 - (id)init;
14 - (int)step;
15 
16 @end
17