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

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.