using System.Collections.Generic; /* Custom Remote Config 1. add TKGParamKey below 2. add key and default value to dic 3. use online param */ public static class TKGParams { public static readonly Dictionary OnlineParamDic = new Dictionary() { // key - default value { TKGParamKey.RemoveAdsShowCount.ToString(), 4 }, // int value // { TKGParamKey.LevelList.ToString(), "1,78,72,70,64,65,4,66" }, // string value { TKGParamKey.HasBlock.ToString(), 0 }, // bool value // 1:true 0:false }; } public enum TKGParamKey { RemoveAdsShowCount, LevelList, HasBlock, }