Example #1
0
 public override void PerformFrame(GamePowerUp powerup, BCBlockGameState gamestate)
 {
     //nothing needed.
 }
Example #2
0
 public abstract void PerformFrame(GamePowerUp powerup, BCBlockGameState gamestate);
Example #3
0
 public override void Draw(GamePowerUp powerup,Graphics g)
 {
     g.DrawImage(drawimage, powerup.CenterPoint().X - _Radius, powerup.CenterPoint().Y - _Radius);
 }
Example #4
0
 public abstract void Draw(GamePowerUp powerup,Graphics g);