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__*/
|