示例#1
0
        public void AddBulletAnimate()
        {
            AnimateImage anmin = new AnimateImage(mForm, mBullet);

            mBullet.MAnim = anmin;
            anmin.changeImage(mBullet.Attr.Flyimg);
        }
示例#2
0
文件: IBullet.cs 项目: githjub/Study
 public void PlayAnim(string animName)
 {
     if (currimg != animName)
     {
         currimg = animName;
         mAnim.changeImage(animName);
     }
 }