mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-03 07:07:25 -05:00
14 lines
230 B
Go
14 lines
230 B
Go
package d2dt1
|
|
|
|
// Block represents a DT1 block
|
|
type Block struct {
|
|
X int16
|
|
Y int16
|
|
GridX byte
|
|
GridY byte
|
|
Format BlockDataFormat
|
|
EncodedData []byte
|
|
Length int32
|
|
FileOffset int32
|
|
}
|