Playtomic.PlayerLevels.Load C# (CSharp) Method

Load() public static method

public static Load ( string levelid, PResponse>.Action callback ) : void
levelid string
callback PResponse>.Action
return void
        public static void Load(string levelid, Action<PlayerLevel, PResponse> callback)
        {
            var postdata = new Hashtable
            {
                {"levelid", levelid }
            };

            SendSaveLoadRequest(SECTION, LOAD, postdata, callback);
        }