mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 13:17:49 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
//
|
||||
// StudioConnector.h
|
||||
// RobloxMobile
|
||||
//
|
||||
// Created by Ben Tkacheff on 12/19/13.
|
||||
// Copyright (c) 2013 ROBLOX. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "GCDAsyncUdpSocket.h"
|
||||
|
||||
@interface StudioConnector : NSObject <GCDAsyncUdpSocketDelegate>
|
||||
{
|
||||
bool hasPaired;
|
||||
NSString* codeToUse;
|
||||
GCDAsyncUdpSocket *udpSocket;
|
||||
NSData* hostIPAddress;
|
||||
NSString* hostIPAddressString;
|
||||
NSString* didPairToHost;
|
||||
}
|
||||
|
||||
+ (id)sharedInstance;
|
||||
|
||||
-(void) tryToPairWithStudioUsingCurrentCode;
|
||||
-(void) tryToPairWithStudio:(NSString*) newCode;
|
||||
|
||||
-(void) stopPairing;
|
||||
-(void) clearPairCode;
|
||||
|
||||
-(NSString*) getPairEndedNotificationString;
|
||||
|
||||
- (NSString *)hostnameForAddress:(NSString *)address;
|
||||
@end
|
||||
Reference in New Issue
Block a user