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

📄 main.h

📁 游戏编程精华02-含有几十个游戏编程例子
💻 H
字号:
/************************************************************
 * Main.h - V2.06.001
 * 
 * (c) Copyright 1996-2001 Sabarasa Entertainment
 * For internal use only.
 ************************************************************/  

#ifndef _PTAH_MAIN_H_
#define _PTAH_MAIN_H_

#include "fplog.h"

/////////////////////////////
// GENERALES DEL JUEGO
/////////////////////////////

#define NAME "Linear Gem"
#define TITLE "Linear Gem"

#define PHYSICAL_WIDTH	640
#define PHYSICAL_HEIGHT 480
#define PHYSICAL_BPP	2

#define DINPUT_BUFFERSIZE           16


extern int idioma;

extern BOOL	bActive;  			// Esta activa la aplicacion?
extern BOOL bInicio;			// Esta iniciandose el thread del juego?
extern BOOL bFin;				// Esta finalizandose el thread del juego?
extern BOOL bDriverLoaded;		// Esta cargado el driver de sonido?
extern BOOL	bSuspended;			// Estado del thread principal
extern HWND	hwnd;
extern HINSTANCE g_hInstance;		

#endif

⌨️ 快捷键说明

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