Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class Usuario
  2. {
  3. private int marcador;
  4.  
  5. public Usuario()
  6. {
  7. marcador = 0;
  8. }
  9. public void setIncrementarMarcador(int puntos)
  10. {
  11. marcador = marcador + puntos;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement