Subversion Repositories plumbers

Rev

Rev 2 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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