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.
FlyingFred/Assets/Scripts/GameConstants.cs

24 lines
1.0 KiB
C#

public class GameConstants
{
public static string GameNamePrefix = "FlyingFred";
public static string HighScoreStatsKey = GameNamePrefix+"_HighScore";
public static string NameEnteredCheckKey = "IsNameEntered";
public static string AvatarSelectedCheckKey = "AvatarSelected";
public static string AvatarSelectedIndex = "AvatarSelectedIndex";
public static string DisplayNameKey = "DisplayName";
public static string PlayfabTitleId = "168AE2";
//#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
}