Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.87 KB | None | 0 0
  1.  for (int i = 0; i < 5; i++)
  2.         {
  3.             spriteBatch.DrawString(this.Content.Load<SpriteFont>("Fonts/Hud"),
  4.                                                                            hs[i],
  5.                                                         new Vector2(675, 250 + i * 50),
  6.                                                                   Color.Yellow
  7.                                                                             );
  8.        
  9.             spriteBatch.DrawString(this.Content.Load<SpriteFont>("Fonts/Hud"),
  10.                                                                            hsn[i],
  11.                                                         new Vector2(500, 250 + (i) * 50),
  12.                                                                   Color.Yellow
  13.                                                                             );
  14.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement