1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-07-07 22:04:29 -04:00
OpenDiablo2/d2common/d2fileformats/d2pl2/pl2_color.go

10 lines
113 B
Go
Raw Normal View History

2020-06-28 22:32:34 -04:00
package d2pl2
// PL2Color represents an RGBA color
type PL2Color struct {
R uint8
G uint8
B uint8
_ uint8
}