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
@@ -0,0 +1,39 @@
//
// RBAccountManagerSocialViewController.h
// RobloxMobile
//
// Created by Kyler Mulherin on 9/14/15.
// Copyright © 2015 ROBLOX. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface RBSocialLinkView : UIView
-(void) initWithSocialName:(NSString*)socialName
iconName:(NSString*)iconName
providerName:(NSString*)providerName
andRefToController:(UIViewController*)controllerRef;
-(void) setIsConnected:(BOOL)connectedToIdentity;
@end
@interface RBAccountManagerSocialViewController : UIViewController
@property IBOutlet UILabel* lblTitle;
@property IBOutlet UILabel* lblWarning;
@property IBOutlet UIView* whiteView;
@property IBOutlet UIButton* btnCancel;
@property IBOutlet UIButton* btnUpdate;
@property IBOutlet RBSocialLinkView* rbsFacebook;
@property IBOutlet RBSocialLinkView* rbsTwitter;
@property IBOutlet RBSocialLinkView* rbsGPlus;
- (IBAction)updateInfo:(id)sender;
- (IBAction)closeController:(id)sender;
@end