mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-04-04 14:33:36 +00:00
14 lines
499 B
C++
Executable File
14 lines
499 B
C++
Executable File
#ifndef NET_MINECRAFT_CLIENT_GUI_SCREENS__DialogDefinitions_H__
|
|
#define NET_MINECRAFT_CLIENT_GUI_SCREENS__DialogDefinitions_H__
|
|
|
|
class DialogDefinitions {
|
|
public:
|
|
static const int DIALOG_CREATE_NEW_WORLD = 1;
|
|
static const int DIALOG_NEW_CHAT_MESSAGE = 2;
|
|
static const int DIALOG_MAINMENU_OPTIONS = 3;
|
|
static const int DIALOG_RENAME_MP_WORLD = 4;
|
|
static const int DIALOG_DEMO_FEATURE_DISABLED = 98;
|
|
};
|
|
|
|
#endif /*#ifndef NET_MINECRAFT_CLIENT_GUI_SCREENS__DialogDefinitions_H__*/
|