mirror of
https://github.com/amitbet/vncproxy.git
synced 2025-04-27 10:50:47 +00:00
7 lines
105 B
Go
7 lines
105 B
Go
package client
|
|
|
|
// Color represents a single color in a color map.
|
|
type Color struct {
|
|
R, G, B uint16
|
|
}
|