15 lines
463 B
C#
15 lines
463 B
C#
namespace That_One_Nerd.Unity.Games.ArcadeManiac.Misc.ObjectModels
|
|
{
|
|
public class Statistics
|
|
{
|
|
public static Statistics instance = new Statistics();
|
|
|
|
public float CompletedPercent => completedGames / (float)requiredGames * 100;
|
|
public float CompletedPercentTotal => completedGames / (float)totalGames * 100;
|
|
|
|
public int completedGames = 0;
|
|
public int requiredGames = 12;
|
|
public int totalGames = 20;
|
|
}
|
|
}
|