1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-28 01:55:24 +00:00
OpenDiablo2/d2core/d2map/d2mapgen/d2wilderness/wilderness_tile_types.go
gravestench 783993470e
Lint error cleanup1 (#779)
* fixed lint error in d2app/app.go

* go fmt entire project

* adding doc.go for d2records

* fixed lint issues in d2core/d2map

* fixed lint error in d2interface/palette.go

* fixed lint error in  d2core/d2hero/hero_state_factory.go

* adding dov.go to d2common/d2geom

* fixing lint errors in d2common/d2loader

* adding doc.go to d2common/d2cache

* adding doc files for d2datautils, d2util, d2path

* adding package doc strings for mapgen, in-geam help screen, and tcp client connection

* removed all cuddling lint errors

* changed stamina equality check to '<=' instead of '<'
2020-10-22 01:12:06 -04:00

56 lines
1.1 KiB
Go

// Package d2wilderness provides an enumeration of wilderness types
package d2wilderness
// nolint: golint // these probably don't require individual explanations.
const (
TreeBorderSouth int = iota + 4
TreeBorderWest
TreeBorderNorth
TreeBorderEast
TreeBorderSouthWest
TreeBorderNorthWest
TreeBorderNorthEast
TreeBorderSouthEast
TreeBoxNorthEast
TreeBoxSouthEast
TreeBoxSouthWest
TreeBoxNorthWest
WallBorderWest
WallBorderEast
WallBorderWestFenceNorth
WallBorderNorthWest
WallBorderWestFenceSouth
WallBorderNorthFenceEast
WallBorderNorthFenceWest
WallBoxSouthEast
WallBorderNorthUndergroundPassageEntrance
WallBorderWestUndergroundPassageEntrance
WaterBorderEast
WaterBorderWest
WaterBridgeEast
StoneFill1
StoneFill2
CorralFill
RandomTreesAndWallBoxLarge
TreeBoxNorthSouth
ShrineWithFenceAndTrees
RandomTreesAndWallBoxSmall
TreeBoxWestEastWithNorthSouthPath
TreeBoxNorthSouthWithEastWestPath
SwampFill1
SwampFill2
TreeFill
Ruin
FallenCamp1
FallenCamp2
FallenCampBishbosh
Camp
Pond
Cottages1
Cottages2
Cottages3
Bivouac
CaveEntrance
DenOfEvilEntrance
)