Ejemplo n.º 1
0
    public void AddPoints(int points)
    {
        _points += points;

        OnAddPoints?.Invoke(_points);
    }
Ejemplo n.º 2
0
 public static void RaiseAddPoints(object sender, int comboValue)
 {
     OnAddPoints?.Invoke(sender, new ScoreArgs(comboValue));
 }