1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-12 02:30:43 +00:00
OpenDiablo2/d2common/d2fileformats/d2ds1/tilerecord.go
2020-06-21 18:40:37 -04:00

16 lines
367 B
Go

package d2ds1
import (
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum"
)
type TileRecord struct {
Floors []FloorShadowRecord
Walls []WallRecord
Shadows []FloorShadowRecord
Substitutions []SubstitutionRecord
// This is set and used internally by the engine to determine what region this map is from
RegionType d2enum.RegionIdType
}