home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
600 Games
/
600games.iso
/
Acao
/
kung_fu.swf
/
scripts
/
__Packages
/
com
/
KidFighting
/
effects
/
EffExplosion.as
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-06-13
|
353 b
|
16 lines
class com.KidFighting.effects.EffExplosion extends com.KidFighting.objects.CEffect
{
var ani;
var hurtValue;
var owner;
function EffExplosion($ani, twn, ch, x, y)
{
super();
this.init($ani,twn,ch,x,y);
}
function onEffectMotionUpdated()
{
this.owner.hitTest(this.ani,null,this.hurtValue);
}
}