⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 othello.dpr

📁 实现黑白棋的游戏
💻 DPR
字号:
//工程单元 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -