summaryrefslogtreecommitdiff
path: root/unit1.pas
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2016-07-15 21:12:30 +0200
committerErich Eckner <git@eckner.net>2016-07-15 21:12:30 +0200
commit69310448c9bec42541def7813c3019d8cab0724c (patch)
tree9923eb183eacd59cded266c82d82d1ad4784784b /unit1.pas
downloadRaetsel-69310448c9bec42541def7813c3019d8cab0724c.tar.xz
initial Commit - nicht lauffähig, enthält aber auch noch das Original
Diffstat (limited to 'unit1.pas')
-rw-r--r--unit1.pas26
1 files changed, 26 insertions, 0 deletions
diff --git a/unit1.pas b/unit1.pas
new file mode 100644
index 0000000..79a1d82
--- /dev/null
+++ b/unit1.pas
@@ -0,0 +1,26 @@
+unit Unit1;
+
+{$mode objfpc}{$H+}
+
+interface
+
+uses
+ Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, raetselFileUnit;
+
+type
+ TForm1 = class(TForm)
+ private
+ { private declarations }
+ public
+ { public declarations }
+ end;
+
+var
+ Form1: TForm1;
+
+implementation
+
+{$R *.lfm}
+
+end.
+