diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-08-27 11:44:14 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-08-27 11:44:14 +0000 |
commit | e9fd8ce40b4cbf006695fd6e56f84071407843c9 (patch) | |
tree | e181a5658b6a814215c130588eff177390920894 /Tools/ScoreConverter/ScoreConverter.dpr | |
parent | 33b13cde51e08eda268e63ef7058f037d299f6c7 (diff) | |
download | usdx-e9fd8ce40b4cbf006695fd6e56f84071407843c9.tar.gz usdx-e9fd8ce40b4cbf006695fd6e56f84071407843c9.tar.xz usdx-e9fd8ce40b4cbf006695fd6e56f84071407843c9.zip |
ScoreConverter moved to Tools
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1301 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Tools/ScoreConverter/ScoreConverter.dpr')
-rw-r--r-- | Tools/ScoreConverter/ScoreConverter.dpr | 17 |
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. |