mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-22 12:13:35 +00:00
24 lines
465 B
Objective-C
24 lines
465 B
Objective-C
//
|
|
// AppManager.h
|
|
// Limelight
|
|
//
|
|
// Created by Diego Waxemberg on 10/25/14.
|
|
// Copyright (c) 2014 Limelight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "App.h"
|
|
#import "HttpManager.h"
|
|
|
|
@protocol AppAssetCallback <NSObject>
|
|
|
|
- (void) receivedAssetForApp:(App*)app;
|
|
|
|
@end
|
|
|
|
@interface AppManager : NSObject
|
|
|
|
+ (void) retrieveAppAssets:(NSArray*)apps withManager:(HttpManager*)hMan andCallback:(id<AppAssetCallback>)callback;
|
|
|
|
@end
|