aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ScoreConverter/ScoreConverter.dpr
blob: 2774cde4d0f2043f1420d32f806170fdcacf2d4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
program ScoreConverter;

uses
  Forms,
  Umainform in 'Umainform.pas' {mainform},
  UScores in 'UScores.pas',
  UDataBase in '..\Game\Code\Classes\UDataBase.pas',
  USongs in 'USongs.pas';

{$R *.res}

begin
  Application.Initialize;
  Application.Title := 'Score Converter';
  Application.CreateForm(Tmainform, mainform);
  Application.Run;
end.