maparray.lpr 394 B

123456789101112131415161718192021
  1. program maparray;
  2. {$mode objfpc}{$H+}
  3. uses
  4. {$IFDEF UNIX}{$IFDEF UseCThreads}
  5. cthreads,
  6. {$ENDIF}{$ENDIF}
  7. Interfaces, // this includes the LCL widgetset
  8. Forms, Unit1, ugraph, ugame;
  9. {$R *.res}
  10. begin
  11. Application.Title:='Puzzle!';
  12. RequireDerivedFormResource := True;
  13. Application.Initialize;
  14. Application.CreateForm(TForm1, Form1);
  15. Application.Run;
  16. end.