A clone of btpd with my configuration changes.
您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
- /* 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;
- }
|