public class Score{ //Variables private int score; //Fonctions Score(){ score = 0; } void augmenter(int augmentation){ score+=augmentation; } void afficher(int x, int y){ fill(0); text(score, x, y); } }