summaryrefslogtreecommitdiff
path: root/light.go
blob: 30d2a5833351268cb436695f9694719e3b8412f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package mt

const (
	MaxLight = 14 // Maximum artificial light.
	SunLight = 15
)

type LightBank uint8

const (
	Day LightBank = iota
	Night
)

//go:generate stringer -type LightBank