home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / starisland.swf / scripts / __Packages / illusoft / Switch.as < prev   
Encoding:
Text File  |  2007-12-10  |  320 b   |  20 lines

  1. class illusoft.Switch
  2. {
  3.    var dmc;
  4.    var circl;
  5.    var isSwitched = false;
  6.    function Switch(mc, circl)
  7.    {
  8.       this.dmc = mc;
  9.       this.circl = circl;
  10.    }
  11.    function DoSwitch()
  12.    {
  13.       if(!this.isSwitched)
  14.       {
  15.          this.dmc.play();
  16.          this.isSwitched = true;
  17.       }
  18.    }
  19. }
  20.