1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
delphi-setistats/SETIstats.dpr

17 lines
332 B
ObjectPascal

program SETIstats;
uses
Forms,
SETIstatsU in 'SETIstatsU.pas' {MainForm},
SkymapU in 'SkymapU.pas' {Skymap};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'SETI@home Statistics';
Application.CreateForm(TMainForm, MainForm);
Application.ShowMainForm := false;
Application.Run;
end.