Subversion Repositories lightgame

Compare Revisions

Regard whitespace Rev 1 → Rev 2

/trunk/LightGame.dpr
0,0 → 1,16
program LightGame;
 
uses
Forms,
LightGameMain in 'LightGameMain.pas' {MainForm},
LightGameAbout in 'LightGameAbout.pas' {AboutBox};
 
{$R *.res}
 
begin
Application.Initialize;
Application.Title := 'Light Game';
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.