mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-06 21:57:47 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// LoginScreenController.h
|
||||
// RobloxMobile
|
||||
//
|
||||
// Created by Ariel Lichtin on 5/20/14.
|
||||
// Copyright (c) 2014 ROBLOX. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "NonRotatableViewController.h"
|
||||
|
||||
typedef enum : NSUInteger {
|
||||
LoginScreenDismissalUnknown = 0,
|
||||
LoginScreenDismissalCancelled = 1,
|
||||
LoginScreenDismissalLoginSuccess = 2,
|
||||
LoginScreenDismissalLoginFailed = 3
|
||||
} LoginScreenDismissalType;
|
||||
|
||||
typedef void(^DismissalCompletionHandler)(LoginScreenDismissalType dismissType, NSError *loginError);
|
||||
|
||||
@interface LoginScreenController : NonRotatableViewController <UIGestureRecognizerDelegate>
|
||||
|
||||
@property (nonatomic, copy) DismissalCompletionHandler dismissalCompletionHandler;
|
||||
|
||||
-(void) setUsername:(NSString*)username andPassword:(NSString*)password;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user