mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-31 04:23:31 +00:00
16 lines
266 B
C
Executable File
16 lines
266 B
C
Executable File
#ifndef NET_MINECRAFT_WORLD__Difficulty_H__
|
|
#define NET_MINECRAFT_WORLD__Difficulty_H__
|
|
|
|
//package net.minecraft.world;
|
|
|
|
enum Difficulty {
|
|
PEACEFUL = 0,
|
|
EASY = 1,
|
|
NORMAL = 2,
|
|
HARD = 3,
|
|
|
|
COUNT
|
|
};
|
|
|
|
#endif /*NET_MINECRAFT_WORLD__Difficulty_H__*/
|