home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Esportes / CrossingCup.swf / scripts / __Packages / sandy / events / TransformEvent.as < prev   
Text File  |  2007-12-11  |  396b  |  15 lines

  1. class sandy.events.TransformEvent extends com.bourre.events.BasicEvent
  2. {
  3.    static var onStartEVENT = new com.bourre.events.EventType("onStart");
  4.    static var onEndEVENT = new com.bourre.events.EventType("onEnd");
  5.    function TransformEvent(e, oT, type)
  6.    {
  7.       super(e,oT);
  8.       this._nType = type;
  9.    }
  10.    function geTransformType(Void)
  11.    {
  12.       return this._nType;
  13.    }
  14. }
  15.