A clone of btpd with my configuration changes.
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- /* tests data packing and unpacking */
-
- struct msg {
- string from_name = 1;
- string to_name = 2;
- optional struct[kill] kill = 3;
- array struct[run] run = 4;
- }
-
- struct kill {
- string weapon = 1;
- string action = 2;
- }
-
- struct run {
- string how = 1;
- }
|