1
0
mirror of https://github.com/mbirth/cm2010.git synced 2024-09-18 22:03:25 +01:00
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.