summaryrefslogtreecommitdiff
path: root/unit2.pas
blob: 11e7551080b1e6f6c030ce4330bad8292b708278 (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.