]> git.lizzy.rs Git - mt.git/blob - light.go
Add WaitGroup to SerializePkt
[mt.git] / light.go
1 package mt
2
3 const (
4         MaxLight = 14 // Maximum artificial light.
5         SunLight = 15
6 )
7
8 type LightBank uint8
9
10 const (
11         Day LightBank = iota
12         Night
13 )
14
15 //go:generate stringer -type LightBank