// // AppManager.h // Moonlight // // Created by Diego Waxemberg on 10/25/14. // Copyright (c) 2014 Moonlight Stream. All rights reserved. // #import #import "App.h" #import "HttpManager.h" #import "Host.h" @protocol AppAssetCallback - (void) receivedAssetForApp:(App*)app; @end @interface AppAssetManager : NSObject - (id) initWithCallback:(id)callback; - (void) retrieveAssets:(NSArray*)appList fromHost:(Host*)host; - (void) stopRetrieving; @end