Закончил 4-е упражнение 4-й главы

This commit is contained in:
2025-12-28 19:31:39 +01:00
parent 2a9136b2f3
commit b7a63ee895
9 changed files with 999 additions and 2 deletions

View File

@@ -0,0 +1,28 @@
program labyrinth;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
{$IFDEF HASAMIGA}
athreads,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, Unit1, MazeUnit
{ 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.