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

📄 main.h

📁 游戏编程精粹,对刚入门的游戏开发者很有帮助
💻 H
字号:
/* Copyright (C) Guy W. Lecky-Thompson, 2000.  * All rights reserved worldwide. * * This software is provided "as is" without express or implied * warranties. You may freely copy and compile this source into * applications you distribute provided that the copyright text * below is included in the resulting source code, for example: * "Portions Copyright (C) Guy W. Lecky-Thompson, 2000" *///example1.h // Make instance handle available to other modules extern HINSTANCE hInstance; extern HWND hAppWnd; // Define Icon Ressource IDs #define IDC_CANCEL	102#define IDC_QUAD_SIZE	103#define IDC_START	101#define DIALOG_1	1#define ICON_APPWND 100#define IDC_STATIC -1// Menus#define IDM_QUIT			200#define IDM_HELP_ABOUT	201#define IDM_QUAD_AVE			202#define IDM_FAULTLINES			203#define IDM_FUZZY			204#define IDM_TERRAIN_PROPERTIES 205#define IDM_METAFILE 206#define IDM_QUAD			207// Dlg stuff#define IDD_OK				900#define IDD_CANCEL			901#define IDC_WATER			902#define IDC_PLAINS			903#define IDC_HILLS			904#define IDC_MOUNTAINS		905#define IDC_MAXHEIGHT		906#define IDC_SEED			907#define IDC_QUADSIZE		908

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -