summaryrefslogtreecommitdiff
path: root/raetsel.lpr
blob: 672f9ca681de6c2443a0285c970bc7db91686f52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
program raetsel;

{$mode objfpc}{$H+}

uses
  {$IFDEF UNIX}{$IFDEF UseCThreads}
  cthreads,
  {$ENDIF}{$ENDIF}
  Interfaces, // this includes the LCL widgetset
  Forms, unit1, Unit2, raetselunit;

{$R *.res}

begin
  requireDerivedFormResource:=true;
  application.initialize;
  application.createForm(tForm1, form1);
  application.run;
end.