?? preferences.h
字號:
/***************************************************************************
Preferences.h - Preferences Engine Header
-------------------
copyright : (C) 2003 by FluXy
email : clubjafa@web.de
website : http://sourceforge.net/projects/smclone/
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef __PREFERENCES_H__
#define __PREFERENCES_H__
#define PREF_VERSION "1.0"
#define PREF_NAME "Preferences.ini"
class cPreferences // new 0.70 beta 9.5
{
public:
cPreferences(void);
Load(void);
Save(void);
Default(void);
Update(void);
Apply(void);
bool Music;
bool Sounds;
bool Fullscreen;
bool UseJoystick;
Uint16 Screen_W,Screen_H;
Uint8 Bpp;
SDLKey Key_up,Key_down,Key_left,Key_right,Key_shoot;
private:
bool Prefs_available(void);
Load_Settings(char* command, int line);
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -