unit3.h

来自「经典游戏俄罗斯方块的制作程序,想成为游戏制作高手,次程序不能不看」· C头文件 代码 · 共 33 行

H
33
字号
//---------------------------------------------------------------------------
#ifndef Unit3H
#define Unit3H
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
//---------------------------------------------------------------------------
class TScoreForm : public TForm
{
__published:	// IDE-managed Components
     TGroupBox *GroupBox1;
     TButton *Button1;
     TLabel *Label1;
     TLabel *Label2;
     TLabel *Label3;
     TLabel *Label4;
     TLabel *Label5;
     TLabel *Label6;
     TLabel *Label7;
     TLabel *Label8;
     TLabel *Label9;
     void __fastcall Button1Click(TObject *Sender);
private:	// User declarations
public:		// User declarations
     __fastcall TScoreForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TScoreForm *ScoreForm;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?