-
Notifications
You must be signed in to change notification settings - Fork 1
/
playerStatisticsBox.h
36 lines (35 loc) · 1.19 KB
/
playerStatisticsBox.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//---------------------------------------------------------------------------
#ifndef playerStatisticsBoxH
#define playerStatisticsBoxH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <FMX.Controls.hpp>
#include <FMX.Forms.hpp>
#include <FMX.Objects.hpp>
#include <FMX.Types.hpp>
#include <FMX.Controls.Presentation.hpp>
#include <FMX.StdCtrls.hpp>
#include <FMX.Ani.hpp>
#include <FMX.ImgList.hpp>
#include <System.ImageList.hpp>
//---------------------------------------------------------------------------
class TplayerStatisticsBoxFrame : public TFrame
{
__published: // IDE-managed Components
TImage *boxImage;
TLabel *nameLabel;
TLabel *moneyLabel;
TLabel *shipLvlLabel;
TLabel *strengthLabel;
TLabel *percentLabel;
TImage *redFrame;
TImageList *playerIconList;
TGlyph *playerIcon;
private: // User declarations
public: // User declarations
__fastcall TplayerStatisticsBoxFrame(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TplayerStatisticsBoxFrame *playerStatisticsBoxFrame;
//---------------------------------------------------------------------------
#endif