mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-01 15:26:11 +00:00
25 lines
686 B
Objective-C
25 lines
686 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, EdgeDetectionDelegate, InputPresenceDelegate, UserInteractionDelegate>
|
|
#else
|
|
@interface StreamFrameViewController : UIViewController <ConnectionCallbacks, EdgeDetectionDelegate, InputPresenceDelegate, UserInteractionDelegate>
|
|
#endif
|
|
@property (nonatomic) StreamConfiguration* streamConfig;
|
|
|
|
@end
|