// // LeaderboardCell.h // RobloxMobile // // Created by Ariel Lichtin on 6/6/14. // Copyright (c) 2014 ROBLOX. All rights reserved. // #import #import "RobloxData.h" #import "RobloxImageView.h" @interface LeaderboardCell : UITableViewCell @property (strong, nonatomic) IBOutlet UILabel* rankLabel; @property (strong, nonatomic) IBOutlet UILabel *titleLabel; @property (strong, nonatomic) IBOutlet UILabel *subtitleLabel; @property (strong, nonatomic) IBOutlet UILabel *pointsLabel; @property (strong, nonatomic) IBOutlet RobloxImageView *avatar; - (void) showPlayerInfo:(RBXLeaderboardEntry*)data; - (void) showClanInfo:(RBXLeaderboardEntry*)data; @end