Exemplo n.º 1
0
 public BulletBuilder(IBullet bullet, Type t, Point position, Point targetPosition, object fm)
 {
     this.mBullet        = bullet;
     this.mT             = t;
     this.position       = position;
     this.targetPosition = targetPosition;
     this.mForm          = (Form)fm;
 }
Exemplo n.º 2
0
 public void AddBullt(IBullet bt)
 {
     launchhouse.Add(bt);
 }
Exemplo n.º 3
0
 public void RemoveBullt(IBullet bt)
 {
     launchhouse.Remove(bt);
     holehouse.Add(bt);
 }
Exemplo n.º 4
0
 public AnimateImage(object oj, IBullet iBullt)
 {
     this.iBullt = iBullt;
     mCanAnimate = false;
     iform       = (Form)oj;
 }