home *** CD-ROM | disk | FTP | other *** search
/ PC/CD Gamer UK 39 / PCGAMER39.bin / games / amber / amberhub.dxr / 00013.ls < prev    next >
Encoding:
Text File  |  1996-11-08  |  291 b   |  18 lines

  1. on startMovie
  2.   checkForPatches()
  3. end
  4.  
  5. on checkForPatches
  6.   global oPatchManager
  7.   if objectp(oPatchManager) then
  8.     patchMe(oPatchManager, the movieName)
  9.   end if
  10. end
  11.  
  12. on closePatchFile
  13.   global oPatchManager
  14.   if objectp(oPatchManager) then
  15.     closePatchFile(oPatchManager)
  16.   end if
  17. end
  18.