Files
ttw_fmx_v10/SilentPlayer.dpr
T

15 lines
245 B
ObjectPascal

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