Files
2025-09-18 17:55:52 -04:00

25 lines
679 B
Objective-C

//
// LeaderboardCell.h
// RobloxMobile
//
// Created by Ariel Lichtin on 6/6/14.
// Copyright (c) 2014 ROBLOX. All rights reserved.
//
#import <UIKit/UIKit.h>
#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