Pathfinder.dpr 306 B

123456789101112131415
  1. program Pathfinder;
  2. uses
  3. System.StartUpCopy,
  4. FMX.Forms,
  5. fdPathfinder in 'fdPathfinder.pas' {FormPathfinder},
  6. uGBEPathFinder in 'D:\GLScene\Sourcex\uGBEPathFinder.pas';
  7. {$R *.res}
  8. begin
  9. Application.Initialize;
  10. Application.CreateForm(TFormPathfinder, fFormPathfinder);
  11. Application.Run;
  12. end.