mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-03-01 00:35:36 +08:00
完善客户端协议
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package proto_log;
|
||||
|
||||
enum MatchActionType {
|
||||
MATCH_ACTION_NONE = 0;
|
||||
MATCH_ACTION_JOIN_TEAM = 1;
|
||||
}
|
||||
12
protocol/proto_hk4e/server_only/log/match/match_body.proto
Normal file
12
protocol/proto_hk4e/server_only/log/match/match_body.proto
Normal 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;
|
||||
}
|
||||
11
protocol/proto_hk4e/server_only/log/match/match_head.proto
Normal file
11
protocol/proto_hk4e/server_only/log/match/match_head.proto
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user