Exemplo n.º 1
0
        public static void SetLastGivenTimeMillis(String rewardId, long lastGiven)
        {
            String key = KeyRewardLastGiven(rewardId);

            KeyValueStorage.SetValue(key, lastGiven.ToString());
        }
Exemplo n.º 2
0
        public static void ResetTimesGiven(String rewardId, int timesGiven)
        {
            String key = KeyRewardTimesGiven(rewardId);

            KeyValueStorage.SetValue(key, timesGiven.ToString());
        }
Exemplo n.º 3
0
        public static void SetLastSeqIdxGiven(string rewardId, int idx)
        {
            String key = KeyRewardIdxSeqGiven(rewardId);

            KeyValueStorage.SetValue(key, idx.ToString());
        }