mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-05 09:47:18 -05:00
9 lines
185 B
Go
9 lines
185 B
Go
package d2dcc
|
|
|
|
// DCCPixelBufferEntry represents a single entry in the pixel buffer.
|
|
type DCCPixelBufferEntry struct {
|
|
Value [4]byte
|
|
Frame int
|
|
FrameCellIndex int
|
|
}
|