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

31 lines
1.2 KiB
C#

public class GameConstants
{
public static string GameNamePrefix = "PiPuzzle";
public static string LevelCompletedStatsKey = GameNamePrefix+"_LevelsCompleted";
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";
public static string AndroidURL =
"https://play.google.com/store/apps/details?id=com.rizze.pipuzzle&hl=en-US&ah=gfIMAf3ZQA42PzRKpRnkmyC0Sek&pli=1";
public static string IosURL = "abcd";
#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
}