10 lines
121 B
Go
10 lines
121 B
Go
package difficulty
|
|
|
|
const (
|
|
Normal = "normal"
|
|
Nightmare = "nightmare"
|
|
Hell = "hell"
|
|
)
|
|
|
|
type Difficulty string
|