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:
Text File  |  2006-06-13  |  353 b   |  16 lines

  1. class com.KidFighting.effects.EffExplosion extends com.KidFighting.objects.CEffect
  2. {
  3.    var ani;
  4.    var hurtValue;
  5.    var owner;
  6.    function EffExplosion($ani, twn, ch, x, y)
  7.    {
  8.       super();
  9.       this.init($ani,twn,ch,x,y);
  10.    }
  11.    function onEffectMotionUpdated()
  12.    {
  13.       this.owner.hitTest(this.ani,null,this.hurtValue);
  14.    }
  15. }
  16.