]> git.sesse.net Git - nageru/blob - json.proto
Fix an issue where the mixer lagging too much behind CEF would cause us to display...
[nageru] / json.proto
1 // Messages used to produce JSON (it's the simplest way we can create valid
2 // JSON without pulling in an external JSON library).
3
4 message Channels {
5         repeated Channel channel = 1;
6 }
7
8 message Channel {
9         required int32 index = 1;
10         required string name = 2;
11         required string color = 3;
12 }