Playtomic.Achievements.Save C# (CSharp) Method

Save() public static method

public static Save ( Hashtable achievement, Action callback ) : void
achievement System.Collections.Hashtable
callback Action
return void
        public static void Save(Hashtable achievement, Action<PResponse> callback)
        {
            PRequest.GetResponse (SECTION, SAVE, achievement, response => {
                callback(response);
            });
        }