home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Esportes / CrossingCup.swf / scripts / __Packages / sandy / events / InterpolationEvent.as next >
Text File  |  2007-12-11  |  507b  |  16 lines

  1. class sandy.events.InterpolationEvent extends sandy.events.TransformEvent
  2. {
  3.    static var onProgressEVENT = new com.bourre.events.EventType("onProgress");
  4.    static var onPauseEVENT = new com.bourre.events.EventType("onPause");
  5.    static var onResumeEVENT = new com.bourre.events.EventType("onResume");
  6.    function InterpolationEvent(e, oT, type, percent)
  7.    {
  8.       super(e,oT,type);
  9.       this._nPercent = percent;
  10.    }
  11.    function getPercent(Void)
  12.    {
  13.       return this._nPercent;
  14.    }
  15. }
  16.