1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-07 08:20:47 +00:00
OpenDiablo2/d2common/d2enum/layer_stream_type.go

21 lines
399 B
Go
Raw Normal View History

package d2enum
// LayerStreamType represents a layer stream type
type LayerStreamType int
// Layer stream types
const (
LayerStreamWall1 LayerStreamType = iota
LayerStreamWall2
LayerStreamWall3
LayerStreamWall4
LayerStreamOrientation1
LayerStreamOrientation2
LayerStreamOrientation3
LayerStreamOrientation4
LayerStreamFloor1
LayerStreamFloor2
LayerStreamShadow
LayerStreamSubstitute
)