ftp.nice.ch/pub/next/games/card/Cribbage.1.1.s.tar.gz#/Cribbage/Cribbage-1.1/ComputerPlayer.h

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

// ComputerPlayer.h
// Project: Cribbage
// Stephan Wacker
// 93-09-16

#import <appkit/appkit.h>

#import "Player.h"

@interface ComputerPlayer: Player
{
    CARD	known[ CARDS ];
    int		knownum;
}

- (char *) pronoun;
- (char *) possessivePronoun;
- (char *) reflexivePronoun;

- emptyHand;
- sortHand;
- makeknown: (CARD *) cards num: (int) n;
- makeknown: (CARD) card;

- (BOOL) faceUp;

- discard;
- playOneCard;
- (int) selectCard;

@end	// ComputerPlayer

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