A clone of btpd with my configuration changes.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

18 řádky
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. }