A clone of btpd with my configuration changes.
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /* 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;
- }
|