diff options
Diffstat (limited to 'ScoreConverter/ScoreConverter.dpr')
-rw-r--r-- | ScoreConverter/ScoreConverter.dpr | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/ScoreConverter/ScoreConverter.dpr b/ScoreConverter/ScoreConverter.dpr index 5736b733..2774cde4 100644 --- a/ScoreConverter/ScoreConverter.dpr +++ b/ScoreConverter/ScoreConverter.dpr @@ -1,17 +1,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.
+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. |