ttw_fmx_v10/SilentPlayer.dpr

15 lines
245 B
Plaintext

program SilentPlayer;
uses
System.StartUpCopy,
FMX.Forms,
uSilentPlayer in 'uSilentPlayer.pas' {fPublicPlayer};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfPublicPlayer, fPublicPlayer);
Application.Run;
end.