copy over comments

This commit is contained in:
RickyRister 2025-09-21 15:34:49 -07:00
parent 97b5e9d890
commit ccca83a699
11 changed files with 203 additions and 0 deletions

View file

@ -1,7 +1,16 @@
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;
}