Heightmap.dpr 238 B

1234567891011121314
  1. program Heightmap;
  2. uses
  3. System.StartUpCopy,
  4. FMX.Forms,
  5. fdHeightmap in 'fdHeightmap.pas' {FormHeightmap};
  6. {$R *.res}
  7. begin
  8. Application.Initialize;
  9. Application.CreateForm(TFormHeightmap, FormHeightmap);
  10. Application.Run;
  11. end.