-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.h
46 lines (42 loc) · 1.46 KB
/
main.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
37
38
39
40
41
42
43
44
45
46
//---------------------------------------------------------------------------
#ifndef mainH
#define mainH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
#include <ComCtrls.hpp>
#include "CardData.h"
#include "CardValues.h"
#include <Buttons.hpp>
class TfmMain : public TForm
{
__published: // IDE-managed Components
TButton *btLocal;
TButton *btOptions;
TButton *btTest;
TCheckBox *cbDontPlay;
TButton *btNetwork;
TRadioGroup *rgNetwork;
TSpeedButton *spbAbout;
void __fastcall FormCreate(TObject *Sender);
void __fastcall btLocalClick(TObject *Sender);
void __fastcall btOptionsClick(TObject *Sender);
void __fastcall btTestClick(TObject *Sender);
void __fastcall btNetworkClick(TObject *Sender);
void __fastcall spbAboutClick(TObject *Sender);
private: // User declarations
TCardPile Set1;
TCardPile Set2;
TCardPile Set3;
public: // User declarations
__fastcall TfmMain(TComponent* Owner);
void LocalDraft();
};
//---------------------------------------------------------------------------
extern PACKAGE TfmMain *fmMain;
//---------------------------------------------------------------------------
#endif