Exemplo n.º 1
0
 /// <summary>
 /// Send a request on behalf of the child.
 /// </summary>
 public void Request()
 {
     Debug.Log("Request");
     Allow2.childId = 68;
     Allow2.Request(
         this,
         dayTypeId,
         bansToLift,
         "test",
         delegate(string err, Allow2CheckResult result)
     {
         Debug.Log("Request Error" + err);
         if (result != null)
         {
             Debug.Log(result.Explanation);
         }
     });
 }