Files
moonlight-ios/Limelight/Stream/StreamConfiguration.h
2018-06-01 19:11:10 -07:00

26 lines
550 B
Objective-C

//
// StreamConfiguration.h
// Moonlight
//
// Created by Diego Waxemberg on 10/20/14.
// Copyright (c) 2014 Moonlight Stream. All rights reserved.
//
@interface StreamConfiguration : NSObject
@property NSString* host;
@property NSString* appVersion;
@property NSString* gfeVersion;
@property NSString* appID;
@property NSString* appName;
@property int width;
@property int height;
@property int frameRate;
@property int bitRate;
@property int riKeyId;
@property int streamingRemotely;
@property NSData* riKey;
@property int gamepadMask;
@end