?? readme.txt
字號:
Beginning Game Programming - Examples
======================================================
Bloodshed Dev-C++ 5
INTRO
===============
Bloodshed Dev-C++ 5 is a graphical suite of development tools that allow you to build Windows applications. Dev-C++ project files are included for each example program and game in the book, and are named Example.dev, where Example is the name of the example. You'll need to open a .dev file in Dev-C++ to open and build any of the examples.
TESTING
===============
To test the examples, just go to the appropriate example folder and double-click the .exe file for the example. The examples are already built, so you don't have to build them in order to test them. Have fun!
WARNING
===============
As of this writing, an important standard header file in the Dev-C++ environment is set to target an older version of Windows, which results in some of the examples in the book not compiling properly. You can easily fix this problem by adding a small chunk of code to the windows.h header file. This file is located in the include folder just beneath the main Dev-C++ install folder (usually \Dev-Cpp\include). Open this file in Dev-C++, and add the following code just after the first block of code that ends with #endif:
#ifndef WINVER
#define WINVER 0x0501
#else
#if defined(_WIN32_WINNT) && (WINVER < 0x0400) && (_WIN32_WINNT > 0x0400)
#error WINVER setting conflicts with _WIN32_WINNT setting
#endif
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -