?? game.h
字號:
//-----------------------------------------------------------------------------
//
// Copyright (C) July 24, 2000 by Zhang Yong
// Email: z-meng@yeah.net
// This source is available for distribution and/or modification
// only under the terms of the GPL license.
//
// The source is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// FITNESS FOR A PARTICULAR PURPOSE. See the GPL.txt for more details.
//
//-----------------------------------------------------------------------------
#ifndef _GAME_H
#define _GAME_H
#include "input.h"
#include "mytime.h"
#define SCREEN_W 640
#define SCREEN_H 480
extern CInput g_input;
extern BOOL g_bShowStats;
extern BOOL g_bPaused;
extern CTime g_lasttime;
extern BOOL g_darken;
BOOL InitGame();
void PauseGame();
BOOL LoadBitmaps();
void ReleaseBitmaps();
void RestoreBitmaps();
BOOL LoadPalette( char *fname, PALETTEENTRY ape[] );
void UpdateFrame();
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -