mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-02 15:56:21 +00:00
27 lines
549 B
Objective-C
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
|