home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Complete Encyclopedia of Games 3
/
GAMES1000V3_d2.iso
/
card
/
cardws17
/
inc
/
rightbut.cdh
< prev
next >
Wrap
Text File
|
1994-02-06
|
914b
|
39 lines
#ifndef cwsrightbut
#define cwsrightbut
procedure RButton is
begin
Clear 'Right Mouse Button';
Write('If you click here with the right button, the card will automatically ');
Write('go to the most appropriate place, looking for a spot in The Foundation first ');
Write('and then to the Tableau.\n');
Write('If the card can\'t be played nothing will happen.\n');
Wait 'About...' About;
end;
stack procedure PollLeftTo(gr : group) is
begin
if Cursor!=0 then break;
with it do
if it<>self then
begin
it.SelectLeftTo(it!+1);
if Cursor!=0 then break procedure;
end
for gr;
end;
stack procedure PollLeftToNE(gr : group) is
begin
if Cursor!=0 then break;
with it do
if it<>self then
if it!>0 then
begin
it.SelectLeftTo(it!+1);
if Cursor!=0 then break procedure;
end
for gr;
end;
#endif