protected override void Draw(GameTime gameTime) { GraphicsDevice.Clear(Color.Black); spriteBatch.Begin(); foreach (Enemy EN in EnemyCubes) { EN.Draw(); } player.Draw(); spriteBatch.End(); base.Draw(gameTime); }