Exemple #1
0
    public APICall <GetSavedOutfitsOperation> GetSavedOutfits()
    {
        GetSavedOutfitsOperation operation = new GetSavedOutfitsOperation();

        return(new APICall <GetSavedOutfitsOperation>(clubPenguinClient, operation));
    }
    private void savedOutfitsLoaded(GetSavedOutfitsOperation operation, HttpResponse httpResponse)
    {
        List <SavedOutfit> responseBody = operation.ResponseBody;

        Service.Get <EventDispatcher>().DispatchEvent(new SavedOutfitServiceEvents.SavedOutfitsLoaded(responseBody));
    }