DLooter.dpr
资源名称:CAST2SDK.rar [点击查看]
上传用户:yj_qiu
上传日期:2022-08-08
资源大小:23636k
文件大小:1k
源码类别:
游戏引擎
开发平台:
Delphi
- (*
- Dungeon Looter
- (C) 2007 George "Mirage" Bakhtadze
- A Pascal Game Development Competition 2007 entry
- *)
- {$I GDefines.inc}
- {$I C2Defines.inc}
- program DLooter;
- uses DLMain, AppsInit, SysUtils;
- var DLStarter: TTrayAppStarter;
- begin
- DLStarter := TTrayAppStarter.Create('Dungeon Looter', nil, [soSingleUser]); // Window creation and other startup tasks
- App := TDLApp.Create('DLooter', DLStarter); // Application creation
- if not DLStarter.Terminated then begin
- App.Init; // Application initialization
- while not App.Starter.Terminated do App.Process; // Main process cycle
- App.UpdateHighScores; // Update high scores file
- end;
- FreeAndNil(App); // Shutdown
- FreeAndNil(DLStarter);
- end.