Subversion Repositories plumbers

Rev

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

Rev Author Line No. Line
8 daniel-mar 1
program ShowTime32;
2 daniel-mar 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.