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

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

type LightBank uint8

const (
	Day LightBank = iota
	Night
)