mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
31 lines
904 B
Objective-C
31 lines
904 B
Objective-C
//
|
|
// SocialSignUpViewController.h
|
|
// RobloxMobile
|
|
//
|
|
// Created by Kyler Mulherin on 9/10/15.
|
|
// Copyright © 2015 ROBLOX. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "NonRotatableViewController.h"
|
|
#import "RBValidTextField.h"
|
|
#import "RobloxImageView.h"
|
|
|
|
@interface SocialSignUpViewController : NonRotatableViewController <UIGestureRecognizerDelegate>
|
|
|
|
@property IBOutlet RobloxImageView* imgIdentity;
|
|
@property IBOutlet RBValidTextField* txtUsername;
|
|
@property IBOutlet UILabel* lblSelectUserName;
|
|
@property IBOutlet UILabel* lblNameDescription;
|
|
@property IBOutlet UILabel* lblAlreadyHaveAccount;
|
|
@property IBOutlet UILabel* lblAlmostDone;
|
|
@property IBOutlet UIButton* btnAccept;
|
|
@property IBOutlet UIButton* btnCancel;
|
|
@property IBOutlet UIView* whiteView;
|
|
@property IBOutlet UIView* shadowContainer;
|
|
|
|
-(IBAction) createAccount:(id)sender;
|
|
-(IBAction) cancelSignUp:(id)sender;
|
|
|
|
@end
|