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.
cm2010/CM2010Project.dpr
2004-12-08 08:45:38 +00:00

15 lines
270 B
ObjectPascal

program CM2010Project;
uses
Forms,
CM2010 in 'CM2010.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'Charge Manager 2010 --- (c)2003 by Markus Birth';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.