aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/Difficulty.h
blob: d238ef15eafe94beb03ca6e5a389b357b489f3aa (plain)
1
2
3
4
5
6
7
8
9
10
#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;
};