delphimvcframework/samples/WineCellarSample/winecellarclient_mobile/WineCellarMobileClient.dpr
2023-02-02 19:14:34 +01:00

15 lines
256 B
ObjectPascal

program WineCellarMobileClient;
uses
System.StartUpCopy,
FMX.Forms,
MainFormU in 'MainFormU.pas' {HeaderFooterForm};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(THeaderFooterForm, HeaderFooterForm);
Application.Run;
end.