home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
404 Jogos
/
CLJG.iso
/
Esportes
/
CrossingCup.swf
/
scripts
/
__Packages
/
sandy
/
events
/
InterpolationEvent.as
next >
Wrap
Text File
|
2007-12-11
|
507b
|
16 lines
class sandy.events.InterpolationEvent extends sandy.events.TransformEvent
{
static var onProgressEVENT = new com.bourre.events.EventType("onProgress");
static var onPauseEVENT = new com.bourre.events.EventType("onPause");
static var onResumeEVENT = new com.bourre.events.EventType("onResume");
function InterpolationEvent(e, oT, type, percent)
{
super(e,oT,type);
this._nPercent = percent;
}
function getPercent(Void)
{
return this._nPercent;
}
}