Ejemplo n.º 1
0
    public APICall <UpdateIglooLayoutOperation> UpdateIglooLayout(long sceneLayoutId, MutableSceneLayout sceneLayout)
    {
        UpdateIglooLayoutOperation operation = new UpdateIglooLayoutOperation(sceneLayoutId, sceneLayout);

        return(new APICall <UpdateIglooLayoutOperation>(clubPenguinClient, operation));
    }
Ejemplo n.º 2
0
        private void onUpdateIglooLayout(UpdateIglooLayoutOperation operation, HttpResponse httpResponse)
        {
            SavedSceneLayout responseBody = operation.ResponseBody;

            Service.Get <EventDispatcher>().DispatchEvent(new IglooServiceEvents.IglooLayoutUpdated(responseBody));
        }