summaryrefslogtreecommitdiff
path: root/unit2.pas
blob: 8c30ae8695fe4249eff8b65eacc2ba8d79a6b180 (plain)
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
unit Unit2;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls;

type

  { TForm2 }

  tForm2 = class(tForm)
    button1: tButton;
    button2: tButton;
  private
    { private declarations }
  public
    { public declarations }
  end;

var
  form2: tForm2;

const
  mrHochhausraetsel = 314;
  mrBuchstabenraetsel = 315;

implementation

{$R *.lfm}

{ TForm2 }

end.