ActivEarth.Objects.Competition.ActivityScore.AddChallengePoints C# (CSharp) Méthode

AddChallengePoints() public méthode

Adds newly earned Activity Points from Challenges.
public AddChallengePoints ( int points ) : void
points int Number of points to add to the Activity Score.
Résultat void
        public void AddChallengePoints(int points)
        {
            this.ChallengeScore += points;
            this.TotalScore += points;
        }