home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Revista CD Expert 51
/
PCGamer51_17Demos.iso
/
games
/
colobotdemo
/
colobotdemo10e.exe
/
script
/
tlaby1.txt
< prev
next >
Wrap
Text File
|
2001-06-10
|
383b
|
27 lines
extern void object::Solution( )
{
object front, left, right;
front = radar(Barrier, 0, 45, 0, 5);
left = radar(Barrier, 90, 45, 0, 5);
right = radar(Barrier, -90, 45, 0, 5);
if ( front == null )
{
move(5);
return;
}
if ( left == null )
{
turn(90);
move(5);
return;
}
if ( right == null )
{
turn(-90);
move(5);
return;
}
}