mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 20:06:07 +00:00
25 lines
422 B
ObjectPascal
25 lines
422 B
ObjectPascal
program FlashPlayer;
|
|
|
|
uses
|
|
Forms,
|
|
Windows,
|
|
Dialogs,
|
|
uMain in 'uMain.pas' {frmMain};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'FFDec Flash Player';
|
|
if(ParamCount<2) then
|
|
begin
|
|
ShowMessage('Wrong parameter count. This EXE is for FFDec internal use only.');
|
|
Application.Terminate;
|
|
end
|
|
else
|
|
begin
|
|
Application.CreateForm(TfrmMain, frmMain);
|
|
end;
|
|
Application.Run;
|
|
end.
|