mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-27 14:45:34 +00:00
23 lines
505 B
Objective-C
23 lines
505 B
Objective-C
//
|
|
// AppAssetRetriever.h
|
|
// Limelight
|
|
//
|
|
// Created by Diego Waxemberg on 1/31/15.
|
|
// Copyright (c) 2015 Limelight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "Host.h"
|
|
#import "App.h"
|
|
#import "AppAssetManager.h"
|
|
|
|
@interface AppAssetRetriever : NSOperation
|
|
|
|
@property (nonatomic) Host* host;
|
|
@property (nonatomic) App* app;
|
|
@property (nonatomic) NSMutableDictionary* cache;
|
|
@property (nonatomic) id<AppAssetCallback> callback;
|
|
@property (nonatomic) BOOL useCache;
|
|
|
|
@end
|