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

  1. extern void object::Solution( )
  2. {
  3.     while ( true )
  4.     {
  5.         float    dir, len;
  6.  
  7.         dir = receive("Direction");
  8.         if ( dir == nan )  break;
  9.  
  10.         len = receive("Length");
  11.         if ( len == nan )  break;
  12.  
  13.         turn(dir);
  14.         move(len);
  15.     }
  16. }
  17.