BSOne.SFC/EM.Lib/ImageEn_SRC/Demos/Other/PhotoSphere/PhotoSphere.dpr

14 lines
187 B
Plaintext

program PhotoSphere;
uses
Forms,
Unit1 in 'Unit1.pas' {MainForm};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.