mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 21:35:49 +00:00
17 lines
247 B
ObjectPascal
17 lines
247 B
ObjectPascal
program Swf2Exe;
|
|
|
|
uses
|
|
Forms,
|
|
Windows,
|
|
Dialogs,
|
|
uMain in 'uMain.pas' {frmMain};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'FFDec Flash Player';
|
|
Application.CreateForm(TfrmMain, frmMain);
|
|
Application.Run;
|
|
end.
|