コード例 #1
0
 private void profileChangeError(SetProfileOperation operation, HttpResponse response)
 {
     Service.Get <EventDispatcher>().DispatchEvent(default(PlayerStateServiceErrors.PlayerProfileChangeError));
 }
コード例 #2
0
    public APICall <SetProfileOperation> SetProfile(Profile profile)
    {
        SetProfileOperation operation = new SetProfileOperation(profile);

        return(new APICall <SetProfileOperation>(clubPenguinClient, operation));
    }
コード例 #3
0
    private void profileChangeComplete(SetProfileOperation operation, HttpResponse response)
    {
        SignedResponse <Profile> responseBody = operation.ResponseBody;

        clubPenguinClient.GameServer.SetProfile(responseBody);
    }