mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04:00
14 lines
226 B
Go
14 lines
226 B
Go
package d2dcc
|
|
|
|
// DCCCell represents a single cell in a DCC file.
|
|
type DCCCell struct {
|
|
Width int
|
|
Height int
|
|
XOffset int
|
|
YOffset int
|
|
LastWidth int
|
|
LastHeight int
|
|
LastXOffset int
|
|
LastYOffset int
|
|
}
|