-
Notifications
You must be signed in to change notification settings - Fork 1
/
Miro.dpr
29 lines (26 loc) · 850 Bytes
/
Miro.dpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
program Miro;
uses
Forms,
fmMain in 'fmMain.pas' {frmMain},
fmInspector in 'fmInspector.pas' {frmInspector},
ImageWin in 'Imagewin.pas' {ImageForm},
ViewWin in 'Viewwin.pas' {ViewForm},
fmDebug in 'fmDebug.pas' {frmDebug},
NikShape in 'NikShape.pas',
MiroRep in 'MiroRep.pas',
fmTools in 'fmTools.pas' {frmTools},
fmAbout in 'fmAbout.pas' {frmAbout},
fmPreview in 'fmPreview.pas' {frmPreview};
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'Miro';
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(TImageForm, ImageForm);
Application.CreateForm(TViewForm, ViewForm);
Application.CreateForm(TfrmDebug, frmDebug);
Application.CreateForm(TfrmTools, frmTools);
Application.CreateForm(TfrmAbout, frmAbout);
Application.CreateForm(TfrmPreview, frmPreview);
Application.Run;
end.