aboutsummaryrefslogtreecommitdiffstats
path: root/ScoreConverter/ScoreConverter.dpr
diff options
context:
space:
mode:
authorwhiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-03-24 18:28:22 +0000
committerwhiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-03-24 18:28:22 +0000
commit061c58bc7c3395fc4f3ceafb4b9ce75a70fe1a22 (patch)
tree9f80ae74dc915e57b83769469222996572d14a87 /ScoreConverter/ScoreConverter.dpr
parent9b41542b5afe9a5e70fee8ecf6c0bbf342dde0d1 (diff)
downloadusdx-061c58bc7c3395fc4f3ceafb4b9ce75a70fe1a22.tar.gz
usdx-061c58bc7c3395fc4f3ceafb4b9ce75a70fe1a22.tar.xz
usdx-061c58bc7c3395fc4f3ceafb4b9ce75a70fe1a22.zip
Initial Release
There is Still a Bug Converting DB Scores to SCO Files git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@28 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r--ScoreConverter/ScoreConverter.dpr17
1 files changed, 17 insertions, 0 deletions
diff --git a/ScoreConverter/ScoreConverter.dpr b/ScoreConverter/ScoreConverter.dpr
new file mode 100644
index 00000000..5736b733
--- /dev/null
+++ b/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.