You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
916 B
C#
23 lines
916 B
C#
|
|
public class GameConstants
|
|
{
|
|
|
|
public static string LevelCompletedStatsKey = "LevelsCompleted";
|
|
public static string NameEnteredCheckKey = "IsNameEntered";
|
|
public static string AvatarSelectedCheckKey = "AvatarSelected";
|
|
public static string AvatarSelectedIndex = "AvatarSelectedIndex";
|
|
public static string DisplayNameKey = "DisplayName";
|
|
|
|
#region MyRegion
|
|
|
|
public static string Ach_CompleteEasyLevelKey = "Completed_Easy_Level";
|
|
public static string Ach_CompleteMediumLevelKey = "Completed_Medium_Level";
|
|
public static string Ach_CompleteHardLevelKey = "Completed_Hard_Level";
|
|
public static string Ach_CompleteExpertLevelKey = "Completed_Expert_Level";
|
|
public static string Ach_CompleteAdvanceLevelKey = "Completed_Advance_Level";
|
|
public static string Ach_WatchedAds = "Watched_Ads";
|
|
public static string Ach_RotatedPipes = "Rotated_Pipes";
|
|
|
|
#endregion
|
|
}
|