aboutsummaryrefslogtreecommitdiffstats
path: root/ScoreConverter/ScoreConverter.dpr
diff options
context:
space:
mode:
Diffstat (limited to 'ScoreConverter/ScoreConverter.dpr')
-rw-r--r--ScoreConverter/ScoreConverter.dpr17
1 files changed, 0 insertions, 17 deletions
diff --git a/ScoreConverter/ScoreConverter.dpr b/ScoreConverter/ScoreConverter.dpr
deleted file mode 100644
index 5736b733..00000000
--- a/ScoreConverter/ScoreConverter.dpr
+++ /dev/null
@@ -1,17 +0,0 @@
-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.