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