mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-19 22:43:32 +00:00
24 lines
767 B
C++
Executable File
24 lines
767 B
C++
Executable File
#ifndef NET_MINECRAFT_CLIENT__OptionStrings_H__
|
|
#define NET_MINECRAFT_CLIENT__OptionStrings_H__
|
|
|
|
class OptionStrings {
|
|
public:
|
|
static const char* Multiplayer_Username;
|
|
static const char* Multiplayer_ServerVisible;
|
|
|
|
static const char* Graphics_Fancy;
|
|
static const char* Graphics_LowQuality;
|
|
static const char* Graphics_GUIScale;
|
|
static const char* Graphics_Vsync;
|
|
static const char* Controls_Sensitivity;
|
|
static const char* Controls_InvertMouse;
|
|
static const char* Controls_UseTouchScreen;
|
|
static const char* Controls_UseTouchJoypad;
|
|
static const char* Controls_IsLefthanded;
|
|
static const char* Controls_FeedbackVibration;
|
|
|
|
static const char* Game_DifficultyLevel;
|
|
};
|
|
|
|
#endif /*NET_MINECRAFT_CLIENT__OptionsStrings_H__*/
|