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.

18 linhas
250 B

  1. /* tests data packing and unpacking */
  2. struct msg {
  3. string from_name = 1;
  4. string to_name = 2;
  5. optional struct[kill] kill = 3;
  6. array struct[run] run = 4;
  7. }
  8. struct kill {
  9. string weapon = 1;
  10. string action = 2;
  11. }
  12. struct run {
  13. string how = 1;
  14. }