-
Notifications
You must be signed in to change notification settings - Fork 0
/
Credits.h
34 lines (29 loc) · 1.06 KB
/
Credits.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
// ---------------------------------------------------------------------------
#ifndef CreditsH
#define CreditsH
// ---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ExtCtrls.hpp>
// ---------------------------------------------------------------------------
class TCreditsForm : public TForm {
__published: // IDE-managed Components
TLabel *header;
TLabel *dev1;
TLabel *dev2;
TLabel *mail1;
TLabel *Label1;
TLabel *whenwhere;
void __fastcall LinkLabel1Click(TObject *Sender);
void __fastcall mail1Click(TObject *Sender);
void __fastcall Label1Click(TObject *Sender);
private: // User declarations
public : // User declarations
__fastcall TCreditsForm(TComponent* Owner);
};
// ---------------------------------------------------------------------------
extern PACKAGE TCreditsForm *CreditsForm;
// ---------------------------------------------------------------------------
#endif