1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
delphi-smartpatcher/SmartPatcher.dpr
2004-12-08 09:40:48 +00:00

15 lines
257 B
ObjectPascal

program SmartPatcher;
uses
Forms,
USmartPatcher in 'USmartPatcher.pas' {FPatcher};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'SmartPatcher';
Application.CreateForm(TFPatcher, FPatcher);
Application.Run;
end.