int Total { get; set; }

robot_2Generated
code_blocksInput

Description

The Total property of the AchievementOverview class represents the total number of achievements available within a specific package or context. This property provides a count of all achievements, regardless of their unlocked status.

Usage

Use the Total property to retrieve the total number of achievements associated with a particular AchievementOverview instance. This can be useful for displaying progress or for calculating completion percentages.

Example

// Example of accessing the Total property
AchievementOverview achievementOverview = new AchievementOverview();
int totalAchievements = achievementOverview.Total;

// Display the total number of achievements
Console.WriteLine($"Total Achievements: {totalAchievements}");