Files
Whisper/WhisperTest.dpr
Michael Schimmel af7cb4f447 Init
2026-01-30 10:11:05 +01:00

15 lines
230 B
ObjectPascal

program WhisperTest;
uses
System.StartUpCopy,
FMX.Forms,
WhisperMain in 'WhisperMain.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.