1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-27 17:45:24 +00:00
OpenDiablo2/d2common/d2fileformats/d2dcc/dcc_cell.go

14 lines
226 B
Go
Raw Normal View History

package d2dcc
2020-06-29 02:32:34 +00:00
// 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
}