ftp.nice.ch/pub/next/games/card/Solitaire.2.1.s.tar.gz#/Solitaire.2.1.s/Solitaire/CardSet.subproj/cardset.h

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

/* indent:4  tabsize:8  font:fixed-width */


typedef enum _CardValue
{
    CS_LOWVALUE = 0,
    CS_ACE = 0,
    CS_TWO,
    CS_THREE,
    CS_FOUR,
    CS_FIVE,
    CS_SIX,
    CS_SEVEN,
    CS_EIGHT,
    CS_NINE,
    CS_TEN,
    CS_JACK,
    CS_QUEEN,
    CS_KING,
    CS_HIGHVALUE = CS_KING
} CardValue;

typedef enum _CardSuit
{
    CS_LOWSUIT = 0,
    CS_CLUBS = 0,
    CS_SPADES,
    CS_DIAMONDS,
    CS_HEARTS,
    CS_HIGHSUIT = CS_HEARTS
} CardSuit;

typedef enum _CardColor
{
    CS_BLACK = 0,
    CS_RED
} CardColor;

typedef enum _CardSize
{
    CS_SMALL = 0,
    CS_LARGE
} CardSize;

typedef enum _CardBack
{
    CS_DEFAULT = 0,
    CS_TRAD,
    CS_SHIP,
    CS_CUSTOM
} CardBack;


#import "Card.h"
#import "SmallCard.h"
#import "CardPile.h"
#import "CardPileView.h"
#import "Pasteboard-CardSet.h"

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