public void Draw(SpriteBatch spriteBatch) { foreach (IProjectile projectile in projectiles) { projectile.Draw(spriteBatch); } state.Draw(spriteBatch); }
/// <inheritdoc/> public void Draw() { oldState.Draw(); }
public void Draw(SpriteBatch spriteBatch) { state.Draw(spriteBatch); }