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

  1. class games.Game
  2. {
  3.    var gameMC;
  4.    var pointerMC;
  5.    var score_addString = "";
  6.    var score_stepdisplay = 5;
  7.    var gameArea = {};
  8.    function Game()
  9.    {
  10.    }
  11.    function endGame()
  12.    {
  13.    }
  14.    function showMissile()
  15.    {
  16.    }
  17.    function shootMissile()
  18.    {
  19.    }
  20.    function getXYPos()
  21.    {
  22.    }
  23.    function getGridPos()
  24.    {
  25.    }
  26.    function get MouseX()
  27.    {
  28.       return this.gameMC._xmouse;
  29.    }
  30.    function get MouseY()
  31.    {
  32.       return this.gameMC._ymouse;
  33.    }
  34.    function showPointer()
  35.    {
  36.       var p = "pointer";
  37.       this.pointerMC = this.gameMC.attachMovie(p,p,this.gameMC.getNextHighestDepth());
  38.       if(this.pointerMC == undefined)
  39.       {
  40.          return undefined;
  41.       }
  42.    }
  43. }
  44.