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

  1. class illusoft.GameTile001 extends illusoft.GameTile
  2. {
  3.    function GameTile001(id, dEngine, character, game, gamemc, nextLevel)
  4.    {
  5.       super(id,dEngine,character,game,gamemc,nextLevel);
  6.    }
  7.    function Update(x)
  8.    {
  9.       super.Update(x);
  10.    }
  11.    function Init()
  12.    {
  13.       super.Init();
  14.       _global.sounds.StartMusic("loop1");
  15.    }
  16.    function Close()
  17.    {
  18.       super.Close();
  19.    }
  20. }
  21.