ActivEarth.Objects.Competition.ActivityScore.AddBadgePoints C# (CSharp) Method

AddBadgePoints() public method

Adds newly earned Activity Points from badges.
public AddBadgePoints ( int points ) : void
points int Number of points to add to the Activity Score.
return void
        public void AddBadgePoints(int points)
        {
            this.BadgeScore += points;
            this.TotalScore += points;
        }