Whisper-Test

This commit is contained in:
Michael Schimmel
2026-02-04 12:23:55 +01:00
parent 0bb8dd2084
commit ef402b867a
8 changed files with 1709 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.