mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-01 00:37:18 -04:00
13 lines
198 B
Go
13 lines
198 B
Go
|
package d2dt1
|
||
|
|
||
|
type Block struct {
|
||
|
X int16
|
||
|
Y int16
|
||
|
GridX byte
|
||
|
GridY byte
|
||
|
Format BlockDataFormat
|
||
|
EncodedData []byte
|
||
|
Length int32
|
||
|
FileOffset int32
|
||
|
}
|