mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
15 lines
256 B
ObjectPascal
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.
|