// // TwitchStreamService.h // CSTwitchStreamServicePlugin // // Created by Zakk on 8/29/14. // Copyright (c) 2014 Zakk. All rights reserved. // #import #import "CSStreamServiceProtocol.h" @interface TwitchStreamService : NSObject @property bool isReady; @property (strong) NSArray *twitchServers; @property (strong) NSString *streamKey; @property (strong) NSString *selectedServer; -(NSViewController *)getConfigurationView; -(NSString *)getServiceDestination; +(NSString *)label; +(NSString *)serviceDescription; @end