home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Revista CD Expert 51
/
PCGamer51_17Demos.iso
/
games
/
colobotdemo
/
colobotdemo10e.exe
/
script
/
tevite.txt
< prev
next >
Wrap
Text File
|
2001-06-10
|
306b
|
20 lines
extern void object::Solution( )
{
while ( true )
{
float left, right;
left = radar(WayPoint, 45, 120, 0, 20);
right = radar(WayPoint, -45, 120, 0, 20);
if ( left == 0 && right == 0 ) // rien ?
{
turn(180); // demi-tour
}
else
{
motor(left, right);
}
}
}