forked from Kolyah35/minecraft-pe-0.6.1
15 lines
334 B
C++
Executable File
15 lines
334 B
C++
Executable File
#ifndef NET_MINECRAFT_WORLD__Difficulty_H__
|
|
#define NET_MINECRAFT_WORLD__Difficulty_H__
|
|
|
|
//package net.minecraft.world;
|
|
|
|
class Difficulty {
|
|
public:
|
|
static const int PEACEFUL = 0;
|
|
static const int EASY = 1;
|
|
static const int NORMAL = 2;
|
|
static const int HARD = 3;
|
|
};
|
|
|
|
#endif /*NET_MINECRAFT_WORLD__Difficulty_H__*/
|