Blame lazarus/mouse-maze/project1.lpr

418c04
program project1;
418c04
418c04
{$mode objfpc}{$H+}
418c04
418c04
uses
418c04
  {$IFDEF UNIX}{$IFDEF UseCThreads}
418c04
  cthreads,
418c04
  {$ENDIF}{$ENDIF}
418c04
  Interfaces, // this includes the LCL widgetset
418c04
  Forms, Unit1
418c04
  { you can add units after this };
418c04
418c04
{$R *.res}
418c04
418c04
begin
418c04
  RequireDerivedFormResource:=True;
418c04
  Application.Initialize;
418c04
  Application.CreateForm(TForm1, Form1);
418c04
  Application.Run;
418c04
end.
418c04