home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Esportes / CrossingCup.swf / scripts / __Packages / com / bourre / events / BasicEvent.as next >
Text File  |  2007-12-11  |  524b  |  29 lines

  1. class com.bourre.events.BasicEvent implements com.bourre.events.IEvent
  2. {
  3.    function BasicEvent(e, oT)
  4.    {
  5.       this._e = e;
  6.       this._oT = oT;
  7.    }
  8.    function getType()
  9.    {
  10.       return this._e;
  11.    }
  12.    function setType(e)
  13.    {
  14.       this._e = e;
  15.    }
  16.    function getTarget()
  17.    {
  18.       return this._oT;
  19.    }
  20.    function setTarget(oT)
  21.    {
  22.       this._oT = oT;
  23.    }
  24.    function toString()
  25.    {
  26.       return com.bourre.log.PixlibStringifier.stringify(this) + " : " + this.getType();
  27.    }
  28. }
  29.