DLooter.dpr
上传用户:yj_qiu
上传日期:2022-08-08
资源大小:23636k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Delphi

  1. (*
  2.  Dungeon Looter
  3.  (C) 2007 George "Mirage" Bakhtadze
  4.  A Pascal Game Development Competition 2007 entry
  5. *)
  6. {$I GDefines.inc}
  7. {$I C2Defines.inc}
  8. program DLooter;
  9. uses DLMain, AppsInit, SysUtils;
  10. var DLStarter: TTrayAppStarter;
  11. begin
  12.   DLStarter := TTrayAppStarter.Create('Dungeon Looter', nil, [soSingleUser]);      // Window creation and other startup tasks
  13.   App := TDLApp.Create('DLooter', DLStarter);                                      // Application creation
  14.   if not DLStarter.Terminated then begin
  15.     App.Init;                                                                      // Application initialization
  16.     while not App.Starter.Terminated do App.Process;                               // Main process cycle
  17.     App.UpdateHighScores;                                                          // Update high scores file
  18.   end;
  19.   FreeAndNil(App);                                                                 // Shutdown
  20.   FreeAndNil(DLStarter);
  21. end.