00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef _SETTINGS_
00019 #define _SETTINGS_
00020
00021 #include <string>
00022
00023 struct Settings
00024 {
00025 int m_nWindowWidth;
00026 int m_nWindowHeight;
00027 int m_nMultisamplingLevel;
00028
00029 int m_nMasterVolume;
00030 int m_nSFXVolume;
00031 int m_nMusicVolume;
00032 int m_nAudioChannels;
00033 int m_nAudioSampleRateHz;
00034 int m_nAudioLayers;
00035
00036 int m_nResCacheSize;
00037 int m_nGameSpeedHz;
00038 int m_nSolverIterations;
00039
00040 std::wstring m_renderer;
00041 std::wstring m_audio;
00042
00043 bool m_bWindowed;
00044 };
00045
00046 #endif