Sort pb cmake and add comments to proto files (#6163)

* sort cmake

* copy over comments

* clean up comments
This commit is contained in:
RickyRister 2025-09-21 16:57:42 -07:00 committed by GitHub
parent f0c3860032
commit 3501ee9a9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 219 additions and 13 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;
}