diff options
Diffstat (limited to 'weihnachtsstern.lpr')
-rw-r--r-- | weihnachtsstern.lpr | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/weihnachtsstern.lpr b/weihnachtsstern.lpr new file mode 100644 index 0000000..f96dbfe --- /dev/null +++ b/weihnachtsstern.lpr @@ -0,0 +1,23 @@ +program weihnachtsstern; + +{$mode objfpc}{$H+} + +uses + {$IFDEF UNIX}{$IFDEF UseCThreads} + cthreads, + {$ENDIF}{$ENDIF} + Interfaces, // this includes the LCL widgetset + Forms, Unit1, vecMath, Unit2 + { you can add units after this }; + +{$R *.res} + +begin + RequireDerivedFormResource:=True; + Application.Scaled:=True; + Application.Initialize; + Application.CreateForm(TForm1, Form1); + Application.CreateForm(TForm2, Form2); + Application.Run; +end. + |