ftp.nice.ch/Attic/openStep/games/Risk.0.98.m.NIS.bs.tar.gz#/Risk.0.98/src/Risk/WorldInfoController.h

This is WorldInfoController.h in view mode; [Download] [Up]

//
// $Id: WorldInfoController.h,v 1.1.1.1 1997/12/09 07:18:58 nygard Exp $
// This file is a part of Risk by Mike Ferris.
//

#import <AppKit/AppKit.h>

@class RiskWorld;

@interface WorldInfoController : NSObject
{
    IBOutlet NSWindow *worldInfoWindow;

    IBOutlet NSTableView *continentTable;

    //RiskWorld *world;
    NSArray *continents;
}

+ (void) initialize;

- (void) awakeFromNib;

- init;
- (void) dealloc;

//- (RiskWorld *) world;
- (void) setWorld:(RiskWorld *)newWorld;

- (void) showPanel;

- (void) orderByName;
- (void) orderByCountryCount;
- (void) orderByBonusValue;

- (void) reorder:sender;

//======================================================================
// NSTableView data source
//======================================================================

- (int) numberOfRowsInTableView:(NSTableView *)aTableView;
- tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex;

@end

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.