othello.dpr

来自「实现黑白棋的游戏」· DPR 代码 · 共 29 行

DPR
29
字号
//工程单元 Othello.dpr
//BY Lishun,1999,all rights reserved
program Othello;

uses
  Forms,
  main in 'main.pas' {mainfrm},
  help in 'help.pas' {aboutfrm},
  all in 'all.pas',
  table in 'table.pas' {tablefrm},
  setting in 'setting.pas' {setfrm},
  Uwait in 'Uwait.pas' {waitfrm},
  Ueval in 'Ueval.pas',
  Udm in 'Udm.pas' {Dm: TDataModule};

{$R *.RES}

begin
  Application.Initialize;
  Application.Title := '黑白棋';
  Application.CreateForm(Tmainfrm, mainfrm);
  Application.CreateForm(Tsetfrm, setfrm);
  Application.CreateForm(Taboutfrm, aboutfrm);
  Application.CreateForm(Ttablefrm, tablefrm);
  Application.CreateForm(Tsetfrm, setfrm);
  Application.CreateForm(Twaitfrm, waitfrm);
  Application.CreateForm(TDm, Dm);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?