Home
last modified time | relevance | path

Searched refs:PlayerSeat (Results 1 – 3 of 3) sorted by relevance

/dports/games/CaribbeanStud/CS/
H A DSeat.h105 class PlayerSeat : public Seat
109 PlayerSeat(Table* table, int from, int to);
110 virtual ~PlayerSeat();
117 PlayerSeat();
118 PlayerSeat(const PlayerSeat &right);
119 const PlayerSeat & operator=(const PlayerSeat &right);
120 int operator==(const PlayerSeat &right) const;
121 int operator!=(const PlayerSeat &right) const;
H A DSeat.cpp281 PlayerSeat::PlayerSeat(Table* table, int from, int to) : Seat(table), in PlayerSeat() function in PlayerSeat
290 PlayerSeat::~PlayerSeat() in ~PlayerSeat()
294 int PlayerSeat::PositionCardX(Card* card, int n) in PositionCardX()
317 int PlayerSeat::PositionCardY(Card*, int) in PositionCardY()
H A DTable.cpp149 _playerSeats[i] = new PlayerSeat(this, (i-1)*100/_players, in Initialize()