D'angband  0.0.0
Deeangband
 全て クラス 名前空間 ファイル 関数 変数 型定義 列挙型 列挙値 フレンド マクロ定義 ページ
Deeangband.cpp
[詳解]
1 
29 #include "stdafx.h"
30 #include "Deeangband.h"
31 #include "GameEngine.h"
32 
33 #include <iostream>
34 #include <string>
35 
36 using namespace Deeangband;
37 
42 int APIENTRY _tWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPTSTR lpCmdLine, _In_ int nCmdShow)
43 {
44  (void)hInstance;
45  (void)hPrevInstance;
46  (void)lpCmdLine;
47  (void)nCmdShow;
48 
49  Deeangband::GameEngine gameEngine;
50  gameEngine.PlayLoop();
51  return 0;
52 }
53 
ゲームエンジンのプロトタイプ宣言
標準のシステム インクルード ファイルのインクルード ファイル、または 参照回数が多く、かつあまり変更さ...
int APIENTRY _tWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPTSTR lpCmdLine, _In_ int nCmdShow)
Windows用メインエントリポイント関数
Definition: Deeangband.cpp:42