blob: 5736b7331bf1e68696d815fc1c108696e93ef15d (
plain) (
tree)
|
|
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.
|