mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-01 23:35:59 +00:00
27 lines
747 B
Objective-C
27 lines
747 B
Objective-C
//
|
|
// StreamFrameViewController.h
|
|
// Moonlight
|
|
//
|
|
// Created by Diego Waxemberg on 1/18/14.
|
|
// Copyright (c) 2015 Moonlight Stream. All rights reserved.
|
|
//
|
|
|
|
#import "Connection.h"
|
|
#import "StreamConfiguration.h"
|
|
#import "StreamView.h"
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#if TARGET_OS_TV
|
|
@import GameController;
|
|
|
|
@interface StreamFrameViewController : GCEventViewController <ConnectionCallbacks, ControllerSupportDelegate, UserInteractionDelegate, UIScrollViewDelegate>
|
|
#else
|
|
@interface StreamFrameViewController : UIViewController <ConnectionCallbacks, ControllerSupportDelegate, UserInteractionDelegate, UIScrollViewDelegate>
|
|
#endif
|
|
@property (nonatomic) StreamConfiguration* streamConfig;
|
|
|
|
-(void)updatePreferredDisplayMode:(BOOL)streamActive;
|
|
|
|
@end
|