Kiwi File Format Demo
See
https://github.com/evanw/kiwi
for more information.
JSON
{ "clientID": 100, "type": "POINTED", "colors": [ { "red": 255, "green": 127, "blue": 0, "alpha": 255 } ] }
Binary
Schema
enum Type { FLAT = 0; ROUND = 1; POINTED = 2; } struct Color { byte red; byte green; byte blue; byte alpha; } message Example { uint clientID = 1; Type type = 2; Color[] colors = 3; }
Log
Success