From 4fb084a6af9200f60e4297a215b8a14f3d70dc40 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 28 Oct 2016 09:33:51 +0200 Subject: initial Commit --- Slitherlink.lpr | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Slitherlink.lpr (limited to 'Slitherlink.lpr') diff --git a/Slitherlink.lpr b/Slitherlink.lpr new file mode 100644 index 0000000..2d703a3 --- /dev/null +++ b/Slitherlink.lpr @@ -0,0 +1,21 @@ +program Slitherlink; + +{$mode objfpc}{$H+} + +uses + {$IFDEF UNIX}{$IFDEF UseCThreads} + cthreads, + {$ENDIF}{$ENDIF} + Interfaces, // this includes the LCL widgetset + Forms, Unit1 + { you can add units after this }; + +{$R *.res} + +begin + RequireDerivedFormResource := True; + Application.Initialize; + Application.CreateForm(TForm1, Form1); + Application.Run; +end. + -- cgit v1.2.3-54-g00ecf