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