mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-10-31 16:27:18 -04:00
10 lines
184 B
Go
10 lines
184 B
Go
|
package d2enum
|
||
|
|
||
|
type RegionLayerType int
|
||
|
|
||
|
const (
|
||
|
RegionLayerTypeFloors RegionLayerType = 0
|
||
|
RegionLayerTypeWalls RegionLayerType = 1
|
||
|
RegionLayerTypeShadows RegionLayerType = 2
|
||
|
)
|