Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. public class Score
  2. {
  3. private static int score;
  4.  
  5. public static void GainScore()
  6. {
  7. score = score + 1;
  8. }
  9.  
  10. public static int GetScore()
  11. {
  12. return score;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement