Пример #1
0
 public void Draw(SpriteBatch spriteBatch)
 {
     foreach (IProjectile projectile in projectiles)
     {
         projectile.Draw(spriteBatch);
     }
     state.Draw(spriteBatch);
 }
Пример #2
0
 /// <inheritdoc/>
 public void Draw()
 {
     oldState.Draw();
 }
Пример #3
0
 public void Draw(SpriteBatch spriteBatch)
 {
     state.Draw(spriteBatch);
 }