home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / OPENSTEP / Games / NeXTGo-3.0-MIS / Controller.h < prev    next >
Encoding:
Text File  |  1997-08-18  |  426 b   |  27 lines

  1.  
  2. #import <AppKit/AppKit.h>
  3.  
  4. #import "GoServer.h"
  5.  
  6. @interface Controller:NSObject
  7. {
  8.     id    GoApplication;
  9.     NSMutableDictionary *myGoServers;
  10.     id    GoServerSelectionList;
  11.     id    GoServerSelectionPanel;
  12.     id    GoServerName;
  13.     id    LoginDefinition;
  14.     id    ServerLogin;
  15.     id    ServerPassword;
  16.     id    ServerPort;
  17. }
  18.  
  19. - init;
  20. - openGoServer:sender;
  21. - connect:sender;
  22. - connectToServer:sender;
  23. - remove:sender;
  24. - add:sender;
  25.  
  26. @end
  27.