예제 #1
0
    public APICall <DeleteIglooLayoutOperation> DeleteIglooLayout(long sceneLayoutId)
    {
        DeleteIglooLayoutOperation operation = new DeleteIglooLayoutOperation(sceneLayoutId);

        return(new APICall <DeleteIglooLayoutOperation>(clubPenguinClient, operation));
    }
예제 #2
0
        private void onDeleteIglooLayout(DeleteIglooLayoutOperation operation, HttpResponse httpResponse)
        {
            long sceneLayoutId = operation.SceneLayoutId;

            Service.Get <EventDispatcher>().DispatchEvent(new IglooServiceEvents.IglooLayoutDeleted(sceneLayoutId));
        }