Cockatrice 2026-09-01-Development-3.1.0-beta.10
A virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
color.proto
Go to the documentation of this file.
1syntax = "proto2";
2
3// Container for a 4 component color code
4message color {
5 // the red component of the color, limited to 256 values
6 optional uint32 r = 1;
8 // the green component of the color, limited to 256 values
9 optional uint32 g = 2;
11 // the blue component of the color, limited to 256 values
12 optional uint32 b = 3;
14 // the opacity component of the color, limited to 256 values
15 optional uint32 a = 4;
syntax
Definition admin_commands.proto:1
Definition color.proto:4
optional uint32 a
Definition color.proto:16
optional uint32 r
Definition color.proto:7
optional uint32 g
Definition color.proto:10
optional uint32 b
Definition color.proto:13