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

📄 preferences.h

📁 FC上的超级玛丽C++移植版
💻 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 + -