mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
19 lines
336 B
Objective-C
19 lines
336 B
Objective-C
//
|
|
// RBGenderView.h
|
|
// RobloxMobile
|
|
//
|
|
// Created by Kyler Mulherin on 7/13/15.
|
|
// Copyright (c) 2015 ROBLOX. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "SignupVerifier.h"
|
|
|
|
@interface RBGenderView : UIView
|
|
|
|
@property (nonatomic, setter=setGender:) Gender playerGender;
|
|
|
|
-(void) setTouchBlock:(void (^)())block;
|
|
|
|
@end
|