home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Complete Encyclopedia of Games 3
/
GAMES1000V3_d2.iso
/
card
/
cardws17
/
inc
/
function.cdh
< prev
next >
Wrap
Text File
|
1994-01-08
|
449b
|
19 lines
#ifndef cwsfunction
#define cwsfunction
{****fonction minimum}
function min(a, b : integer): integer is
if a<b then return a else return b;
{****fonction maximum}
function max(a, b : integer): integer is
if a<b then return b else return a;
//-------------------------------------------
{****valeur a ajouter a une carte pour la tourner du cote as}
function CSide(as : card):integer is
return as * decksize;
#endif