mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
16 lines
442 B
Protocol Buffer
16 lines
442 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
// Container for a 4 component color code
|
|
message color {
|
|
// the red component of the color, limited to 256 values
|
|
optional uint32 r = 1;
|
|
|
|
// the green component of the color, limited to 256 values
|
|
optional uint32 g = 2;
|
|
|
|
// the blue component of the color, limited to 256 values
|
|
optional uint32 b = 3;
|
|
|
|
// the opacity component of the color, limited to 256 values
|
|
optional uint32 a = 4;
|
|
}
|