mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 13:17:49 +00:00
25 lines
679 B
Objective-C
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
|