home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2001 November / Gamestar_34_2001-11_cd1.bin / DEMA / colobotdemoe.exe / script / tproc1.txt < prev    next >
Text File  |  2001-07-23  |  181b  |  15 lines

  1. extern void object::Solution( )
  2. {
  3.     Square(15);
  4.     Square(25);
  5. }
  6.  
  7. void object::Square(float length)
  8. {
  9.     for ( int i=0 ; i<4 ; i=i+1 )
  10.     {
  11.         move(length);
  12.         turn(90);
  13.     }
  14. }
  15.