home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 51 / PCGamer51_17Demos.iso / games / colobotdemo / colobotdemo10e.exe / script / texch1.txt < prev    next >
Text File  |  2001-06-10  |  172b  |  11 lines

  1. extern void object::Solution( )
  2. {
  3.     for ( int i=0 ; i<5 ; i=i+1 )
  4.     {
  5.         move(20);
  6.         float dir = receive("Direction");
  7.         if ( dir == nan )  break;
  8.         turn(dir);
  9.     }
  10. }
  11.