Subversion Repositories lightgame

Rev

Blame | Last modification | View Log | RSS feed

  1. program LightGame;
  2.  
  3. uses
  4.   Forms,
  5.   LightGameMain in 'LightGameMain.pas' {MainForm},
  6.   LightGameAbout in 'LightGameAbout.pas' {AboutBox};
  7.  
  8. {$R *.res}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.Title := 'Light Game';
  13.   Application.CreateForm(TMainForm, MainForm);
  14.   Application.CreateForm(TAboutBox, AboutBox);
  15.   Application.Run;
  16. end.
  17.