home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / VenusMission.swf / scripts / __Packages / games / externalmethods / AGameSendMethods.as next >
Encoding:
Text File  |  2008-09-23  |  404 b   |  19 lines

  1. class games.externalmethods.AGameSendMethods
  2. {
  3.    var _agameId;
  4.    var manager;
  5.    function AGameSendMethods(aId, gameManager)
  6.    {
  7.       this._agameId = aId;
  8.       this.manager = gameManager;
  9.    }
  10.    function getMore()
  11.    {
  12.       getURL("http://moregames." + this._agameId + "/","");
  13.    }
  14.    function addToSite()
  15.    {
  16.       getURL("http://freegames." + this._agameId + "/","");
  17.    }
  18. }
  19.