mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04:00
14 lines
327 B
Go
14 lines
327 B
Go
package d2enum
|
|
|
|
// DifficultyType is an enum for the possible difficulties
|
|
type DifficultyType int
|
|
|
|
const (
|
|
// DifficultyNormal is the normal difficulty
|
|
DifficultyNormal DifficultyType = iota
|
|
// DifficultyNightmare is the nightmare difficulty
|
|
DifficultyNightmare
|
|
// DifficultyHell is the hell difficulty
|
|
DifficultyHell
|
|
)
|