SphereExt.dpr 238 B

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