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

  1. extern void object::SwitchCell1()
  2. {
  3.     grab(InFront);     // takes the new cell in front
  4.     drop(Behind);      // and drops it behind
  5.     
  6.     grab(EnergyCell);  // takes the cell from the bot
  7.     drop(InFront);     // and drops it in front
  8.     
  9.     grab(Behind);      // takes the new cell
  10.     drop(EnergyCell);  // and drops it on the bot
  11. }
  12.