-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChess.h
31 lines (29 loc) · 991 Bytes
/
Chess.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
//---------------------------------------------------------------------------
#ifndef ChessH
#define ChessH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ButtonGroup.hpp>
#include <Vcl.ImgList.hpp>
#include "Pcs.h"
//---------------------------------------------------------------------------
class TFrm : public TForm
{
__published: // IDE-managed Components
TButtonGroup *Bgp;
TButton *BtnClose;
TImageList *ImgLst;
void __fastcall BtnCloseClick(TObject *Sender);
void __fastcall BgpButtonClicked(TObject *Sender, int Index);
private: // User declarations
public: // User declarations
__fastcall TFrm(TComponent* Owner);
Pcs *ps;
};
//---------------------------------------------------------------------------
extern PACKAGE TFrm *Frm;
//---------------------------------------------------------------------------
#endif