mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-01 15:26:11 +00:00
22 lines
398 B
Objective-C
22 lines
398 B
Objective-C
//
|
|
// ConnectionHelper.h
|
|
// Moonlight macOS
|
|
//
|
|
// Created by Felix Kratz on 22.03.18.
|
|
// Copyright © 2018 Felix Kratz. All rights reserved.
|
|
//
|
|
|
|
#import "AppListResponse.h"
|
|
#import "TemporaryHost.h"
|
|
|
|
#ifndef ConnectionHelper_h
|
|
#define ConnectionHelper_h
|
|
|
|
@interface ConnectionHelper : NSObject
|
|
|
|
+(AppListResponse*) getAppListForHost:(TemporaryHost*)host;
|
|
|
|
@end
|
|
|
|
#endif /* ConnectionHelper_h */
|