完善客户端协议

This commit is contained in:
flswld
2023-01-19 19:29:52 +08:00
parent a00bee14d0
commit 2983c16272
3254 changed files with 57101 additions and 93258 deletions

View File

@@ -0,0 +1,8 @@
syntax = "proto3";
package proto_log;
enum MatchActionType {
MATCH_ACTION_NONE = 0;
MATCH_ACTION_JOIN_TEAM = 1;
}

View File

@@ -0,0 +1,12 @@
syntax = "proto3";
package proto_log;
message MatchLogBodyJoinTeam {
uint32 host_uid = 1;
uint32 guest_uid = 2;
uint32 cost_time = 3;
repeated uint32 uid_list = 4;
uint32 match_type = 5;
uint32 match_target = 6;
}

View File

@@ -0,0 +1,11 @@
syntax = "proto3";
package proto_log;
message MatchLogHead {
string time = 1;
uint32 action_id = 2;
string action_name = 3;
uint32 sub_action_id = 4;
string sub_action_name = 5;
}