This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
+33
View File
@@ -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