mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-01 15:26:11 +00:00
26 lines
747 B
Objective-C
26 lines
747 B
Objective-C
//
|
|
// MainFrameViewController.h
|
|
// Moonlight
|
|
//
|
|
// Created by Diego Waxemberg on 1/17/14.
|
|
// Copyright (c) 2014 Moonlight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "DiscoveryManager.h"
|
|
#import "PairManager.h"
|
|
#import "StreamConfiguration.h"
|
|
#import "UIComputerView.h"
|
|
#import "UIAppView.h"
|
|
#import "AppAssetManager.h"
|
|
#import "SWRevealViewController.h"
|
|
|
|
@interface MainFrameViewController : UICollectionViewController <DiscoveryCallback, PairCallback, HostCallback, AppCallback, AppAssetCallback, NSURLConnectionDelegate, SWRevealViewControllerDelegate>
|
|
|
|
@property (weak, nonatomic) IBOutlet UIBarButtonItem *settingsButton;
|
|
#if !TARGET_OS_TV
|
|
@property (weak, nonatomic) IBOutlet UIBarButtonItem *upButton;
|
|
#endif
|
|
|
|
@end
|