| 1234567891011121314151617181920212223242526272829 |
- using Microsoft.Xna.Framework;
- using Microsoft.Xna.Framework.Graphics;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Tutorial010
- {
- public class Score
- {
- public int Score1;
- public int Score2;
- private SpriteFont _font;
- public Score(SpriteFont font)
- {
- _font = font;
- }
- public void Draw(SpriteBatch spriteBatch)
- {
- spriteBatch.DrawString(_font, Score1.ToString(), new Vector2(320, 70), Color.White);
- spriteBatch.DrawString(_font, Score2.ToString(), new Vector2(430, 70), Color.White);
- }
- }
- }
|