diff options
Diffstat (limited to 'Занимательное программирование/7/1_minesweeper/minesweeper.lpr')
| -rw-r--r-- | Занимательное программирование/7/1_minesweeper/minesweeper.lpr | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Занимательное программирование/7/1_minesweeper/minesweeper.lpr b/Занимательное программирование/7/1_minesweeper/minesweeper.lpr new file mode 100644 index 0000000..48f2730 --- /dev/null +++ b/Занимательное программирование/7/1_minesweeper/minesweeper.lpr @@ -0,0 +1,28 @@ +program minesweeper; + +{$mode objfpc}{$H+} + +uses + {$IFDEF UNIX} + cthreads, + {$ENDIF} + {$IFDEF HASAMIGA} + athreads, + {$ENDIF} + Interfaces, // this includes the LCL widgetset + Forms, Unit1 + { you can add units after this }; + +{$R *.res} + +begin + RequireDerivedFormResource:=True; + Application.Scaled:=True; + {$PUSH}{$WARN 5044 OFF} + Application.MainFormOnTaskbar:=True; + {$POP} + Application.Initialize; + Application.CreateForm(TForm1, Form1); + Application.Run; +end. + |
