summaryrefslogtreecommitdiff
path: root/unit1.pas
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2016-09-10 16:35:18 +0200
committerErich Eckner <git@eckner.net>2016-09-10 16:35:18 +0200
commita0b9d3beeb68e0213275d93c74b1137fd0afc017 (patch)
tree09f8ea91d5f3c2bfcff7b34362e2d20d6230ab64 /unit1.pas
parent69310448c9bec42541def7813c3019d8cab0724c (diff)
downloadRaetsel-a0b9d3beeb68e0213275d93c74b1137fd0afc017.tar.xz
irgendwas gemacht
Diffstat (limited to 'unit1.pas')
-rw-r--r--unit1.pas19
1 files changed, 18 insertions, 1 deletions
diff --git a/unit1.pas b/unit1.pas
index 79a1d82..c1584cb 100644
--- a/unit1.pas
+++ b/unit1.pas
@@ -1,4 +1,4 @@
-unit Unit1;
+unit unit1;
{$mode objfpc}{$H+}
@@ -8,7 +8,11 @@ uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, raetselFileUnit;
type
+
+ { TForm1 }
+
TForm1 = class(TForm)
+ procedure FormCreate(Sender: TObject);
private
{ private declarations }
public
@@ -22,5 +26,18 @@ implementation
{$R *.lfm}
+uses
+ unit2;
+
+{ TForm1 }
+
+procedure TForm1.FormCreate(Sender: TObject);
+begin
+ case form2.showmodal of
+ mrBuchstabenraetsel: ;
+ mrHochhausraetsel: ;
+ end;
+end;
+
end.