moonlight-ios/Limelight/Network/AppAssetManager.h
2018-08-27 01:54:58 -07:00

27 lines
549 B
Objective-C

//
// AppManager.h
// Moonlight
//
// Created by Diego Waxemberg on 10/25/14.
// Copyright (c) 2014 Moonlight Stream. All rights reserved.
//
#import "TemporaryApp.h"
#import "HttpManager.h"
#import "TemporaryHost.h"
@protocol AppAssetCallback <NSObject>
- (void) receivedAssetForApp:(TemporaryApp*)app;
@end
@interface AppAssetManager : NSObject
- (id) initWithCallback:(id<AppAssetCallback>)callback;
- (void) retrieveAssetsFromHost:(TemporaryHost*)host;
- (void) stopRetrieving;
+ (NSString*) boxArtPathForApp:(TemporaryApp*)app;
@end