FIX: Rewrite options

This commit is contained in:
Kolyah35
2026-03-14 14:13:49 +03:00
parent 09d28be195
commit badd59b644
67 changed files with 1093 additions and 1377 deletions

View File

@@ -3,12 +3,13 @@
//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;
enum Difficulty {
PEACEFUL = 0,
EASY = 1,
NORMAL = 2,
HARD = 3,
COUNT
};
#endif /*NET_MINECRAFT_WORLD__Difficulty_H__*/