mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-27 06:32:59 +00:00
27 lines
496 B
Objective-C
27 lines
496 B
Objective-C
//
|
|
// AppManager.h
|
|
// Moonlight
|
|
//
|
|
// Created by Diego Waxemberg on 10/25/14.
|
|
// Copyright (c) 2014 Moonlight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "App.h"
|
|
#import "HttpManager.h"
|
|
#import "Host.h"
|
|
|
|
@protocol AppAssetCallback <NSObject>
|
|
|
|
- (void) receivedAssetForApp:(App*)app;
|
|
|
|
@end
|
|
|
|
@interface AppAssetManager : NSObject
|
|
|
|
- (id) initWithCallback:(id<AppAssetCallback>)callback;
|
|
- (void) retrieveAssetsFromHost:(Host*)host;
|
|
- (void) stopRetrieving;
|
|
|
|
@end
|