This is RiskNeighbor.h in view mode; [Download] [Up]
//
// $Id: RiskNeighbor.h,v 1.1.1.1 1997/12/09 07:18:55 nygard Exp $
// This file is a part of Risk by Mike Ferris.
//
#import <Foundation/Foundation.h>
@class Country;
@interface RiskNeighbor : NSObject
{
Country *country1;
Country *country2;
}
+ riskNeighborWithCountries:(Country *)firstCountry:(Country *)secondCountry;
- initWithCountries:(Country *)firstCountry:(Country *)secondCountry;
- (void) dealloc;
- (Country *) country1;
- (Country *) country2;
- (NSString *) description;
@end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.