1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-07 00:10:43 +00:00
OpenDiablo2/map/Orientation.go
2019-11-06 22:12:15 -05:00

27 lines
1.3 KiB
Go

package _map
type Orientation int32
const (
Floors Orientation = 0
LeftWall Orientation = 1
RightWall Orientation = 2
RightPartOfNorthCornerWall Orientation = 3
LeftPartOfNorthCornerWall Orientation = 4
LeftEndWall Orientation = 5
RightEndWall Orientation = 6
SouthCornerWall Orientation = 7
LeftWallWithDoor Orientation = 8
RightWallWithDoor Orientation = 9
SpecialTile1 Orientation = 10
SpecialTile2 Orientation = 11
PillarsColumnsAndStandaloneObjects Orientation = 12
Shadows Orientation = 13
Trees Orientation = 14
Roofs Orientation = 15
LowerWallsEquivalentToLeftWall Orientation = 16
LowerWallsEquivalentToRightWall Orientation = 17
LowerWallsEquivalentToRightLeftNorthCornerWall Orientation = 18
LowerWallsEquivalentToSouthCornerwall Orientation = 19
)