mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-16 14:15:51 -06:00
30 lines
587 B
Objective-C
30 lines
587 B
Objective-C
//
|
|
// TwitchStreamService.h
|
|
// CSTwitchStreamServicePlugin
|
|
//
|
|
// Created by Zakk on 8/29/14.
|
|
// Copyright (c) 2014 Zakk. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "CSStreamServiceProtocol.h"
|
|
|
|
|
|
@interface TwitchStreamService : NSObject <CSStreamServiceProtocol>
|
|
|
|
|
|
@property bool isReady;
|
|
|
|
@property (strong) NSArray *twitchServers;
|
|
@property (strong) NSString *streamKey;
|
|
@property (strong) NSString *selectedServer;
|
|
|
|
|
|
|
|
-(NSViewController *)getConfigurationView;
|
|
-(NSString *)getServiceDestination;
|
|
+(NSString *)label;
|
|
+(NSString *)serviceDescription;
|
|
|
|
|
|
@end
|