Blame view

d2common.h 256 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef D2COMMON_H
#define D2COMMON_H

#define D2S_DIFFICULTY_ACTIVE 0x80

typedef enum D2S_DIFFICULTY {
    D2S_DIFFICULTY_UNKNOWN = -1,
    D2S_DIFFICULTY_NORMAL = 0,
    D2S_DIFFICULTY_NIGHTMARE = 1,
    D2S_DIFFICULTY_HELL = 2
} D2S_DIFFICULTY;

#endif