ActivEarth.Objects.Competition.ActivityScore.AddChallengePoints C# (CSharp) 메소드

AddChallengePoints() 공개 메소드

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