Subversion Repositories plumbers

Rev

Rev 2 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. program ShowTime32;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'Main.pas' {MainForm},
  6.   Game in 'Game.pas',
  7.   GameBinStruct in '..\FileFormat\Delphi\GameBinStruct.pas';
  8.  
  9. {$R *.res}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TMainForm, MainForm);
  14.   Application.Run;
  15. end.
  16.