2011-09-07 17:58:54 +00:00
|
|
|
unit gameplayform;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2011-09-14 00:35:25 +00:00
|
|
|
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
|
|
|
|
ExtCtrls;
|
2011-09-07 17:58:54 +00:00
|
|
|
|
|
|
|
type
|
2011-09-14 00:35:25 +00:00
|
|
|
|
|
|
|
{ TForm2 }
|
|
|
|
|
2011-09-07 17:58:54 +00:00
|
|
|
TForm2 = class(TForm)
|
2011-09-14 00:35:25 +00:00
|
|
|
btnExit: TButton;
|
|
|
|
Edit1: TEdit;
|
|
|
|
Edit2: TEdit;
|
|
|
|
Edit3: TEdit;
|
|
|
|
Edit4: TEdit;
|
|
|
|
Image1: TImage;
|
|
|
|
Label1: TLabel;
|
|
|
|
Label2: TLabel;
|
|
|
|
Label3: TLabel;
|
|
|
|
procedure btnExitClick(Sender: TObject);
|
|
|
|
procedure FormCreate(Sender: TObject);
|
2011-09-07 17:58:54 +00:00
|
|
|
private
|
|
|
|
{ private declarations }
|
|
|
|
public
|
|
|
|
{ public declarations }
|
2011-09-14 00:35:25 +00:00
|
|
|
|
|
|
|
backgroundImage: TJpegImage;
|
|
|
|
|
2011-09-07 17:58:54 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
Form2: TForm2;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
2011-09-14 00:35:25 +00:00
|
|
|
uses gameconfigform;
|
|
|
|
|
2011-09-07 17:58:54 +00:00
|
|
|
{$R *.lfm}
|
|
|
|
|
2011-09-14 00:35:25 +00:00
|
|
|
{ TForm2 }
|
|
|
|
|
|
|
|
procedure TForm2.btnExitClick(Sender: TObject);
|
|
|
|
begin
|
|
|
|
Close;
|
|
|
|
Form1.Show;
|
|
|
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TForm2.FormCreate(Sender: TObject);
|
|
|
|
begin
|
|
|
|
|
|
|
|
end;
|
|
|
|
|
2011-09-07 17:58:54 +00:00
|
|
|
end.
|
|
|
|
|