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.
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.
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 of accessing the Total property AchievementOverview achievementOverview = new AchievementOverview(); int totalAchievements = achievementOverview.Total; // Display the total number of achievements Console.WriteLine($"Total Achievements: {totalAchievements}");