mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-05 09:47:18 -05:00
19 lines
403 B
Go
19 lines
403 B
Go
|
package d2dt1
|
||
|
|
||
|
type Tile struct {
|
||
|
Direction int32
|
||
|
RoofHeight int16
|
||
|
SoundIndex byte
|
||
|
Animated bool
|
||
|
Height int32
|
||
|
Width int32
|
||
|
Orientation int32
|
||
|
MainIndex int32
|
||
|
SubIndex int32
|
||
|
RarityFrameIndex int32
|
||
|
SubTileFlags [25]byte
|
||
|
blockHeaderPointer int32
|
||
|
blockHeaderSize int32
|
||
|
Blocks []Block
|
||
|
}
|