mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-24 06:25:29 +00:00
10 lines
173 B
C++
10 lines
173 B
C++
#pragma once
|
|
|
|
class Difficulty
|
|
{
|
|
public:
|
|
static const int PEACEFUL = 0;
|
|
static const int EASY = 1;
|
|
static const int NORMAL = 2;
|
|
static const int HARD = 3;
|
|
}; |