mirror of
https://github.com/ngeor/Chameleon.git
synced 2025-12-19 09:53:43 +01:00
git-subtree-dir: pas git-subtree-mainline: 6d5784cc4089eeb4864244cd4951b1aa66b4e90e git-subtree-split: 71642f0773f3b21b1e6bcdfcfdbdb186b6c8f78c
25 lines
485 B
ObjectPascal
25 lines
485 B
ObjectPascal
program Chameleon;
|
|
|
|
{$MODE Delphi}
|
|
|
|
uses
|
|
Forms,
|
|
Interfaces,
|
|
frmMain in 'frmMain.pas' {MainForm},
|
|
frmResults in 'frmResults.pas' {Results},
|
|
Writers in 'Writers.pas',
|
|
DfmEngine in 'DfmEngine.pas',
|
|
StrConsts in 'StrConsts.pas',
|
|
about1 in 'about1.pas' {AboutBox};
|
|
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.CreateForm(TResults, Results);
|
|
Application.CreateForm(TAboutBox, AboutBox);
|
|
Application.Run;
|
|
end.
|