blob: 03be987d6fb247dd848d6a5fcf76cae5ba59cd9c (
plain) (
blame)
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
|
//---------------------------------------------------------------------------
#ifndef splashfrmH
#define splashfrmH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <Graphics.hpp>
//---------------------------------------------------------------------------
class TsplashForm : public TForm
{
__published: // IDE-managed Components
TImage *Image1;
TButton *Button1;
TLabel *devotion;
private: // User declarations
public: // User declarations
__fastcall TsplashForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TsplashForm *splashForm;
//---------------------------------------------------------------------------
#endif
|