]> git.sesse.net Git - nageru/blob - nageru/json.proto
Make the MIDI play button blinking when something is ready to play, and solid when...
[nageru] / 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 syntax = "proto2";
5
6 message Channels {
7         repeated Channel channel = 1;
8 }
9
10 message Channel {
11         required int32 index = 1;
12         required string name = 2;
13         required string color = 3;
14 }