A clone of btpd with my configuration changes.
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- /* 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;
- }
|