close Warning: Can't synchronize with repository "(default)" (No changeset 184 in the repository). Look in the Trac log for more information.

source: branches/delphi/xtactics.lpr

Last change on this file was 44, checked in by chronos, 10 years ago
  • Added: Test Delphi conversion.
File size: 855 bytes
Line 
1program xtactics;
2
3uses
4 Forms,
5 UGame in 'UGame.pas',
6 Unit1 in 'Unit1.pas' {Form1},
7 UFormMain in 'Forms\UFormMain.pas' {FormMain},
8 UFormMove in 'Forms\UFormMove.pas' {FormMove},
9 UFormNew in 'Forms\UFormNew.pas' {FormNew},
10 UFormPlayer in 'Forms\UFormPlayer.pas' {FormPlayer},
11 UFormSettings in 'Forms\UFormSettings.pas' {FormSettings},
12 UCore in 'UCore.pas' {Core: TDataModule};
13
14{$R *.res}
15
16begin
17 Application.Initialize;
18 Application.MainFormOnTaskbar := True;
19 Application.CreateForm(TCore, Core);
20 Application.CreateForm(TFormMain, FormMain);
21 Application.CreateForm(TFormMove, FormMove);
22 Application.CreateForm(TFormSettings, FormSettings);
23 Application.CreateForm(TFormPlayer, FormPlayer);
24 Application.CreateForm(TFormNew, FormNew);
25 Application.CreateForm(TForm1, Form1);
26 Application.Run;
27end.
Note: See TracBrowser for help on using the repository browser.