This commit is contained in:
Michael Schimmel
2026-01-30 10:11:05 +01:00
commit af7cb4f447
7 changed files with 1752 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
program WhisperTest;
uses
System.StartUpCopy,
FMX.Forms,
WhisperMain in 'WhisperMain.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.