格式化代码

This commit is contained in:
flswld
2023-05-22 00:39:02 +08:00
parent f851ad1692
commit 3100e8b147
115 changed files with 38550 additions and 38546 deletions

View File

@@ -2,63 +2,63 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message GroupLinkBundle {
Vector center = 4;
bool is_activated = 12;
uint32 bundle_id = 3;
bool is_show_mark = 14;
uint32 scene_id = 5;
uint32 radius = 1;
Vector center = 4;
bool is_activated = 12;
uint32 bundle_id = 3;
bool is_show_mark = 14;
uint32 scene_id = 5;
uint32 radius = 1;
}
message GroupLinkAllNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5776;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5776;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated GroupLinkBundle bundle_list = 5;
repeated GroupLinkBundle bundle_list = 5;
}
message GroupLinkChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5768;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5768;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
GroupLinkBundle bundle = 8;
GroupLinkBundle bundle = 8;
}
message GroupLinkDeleteNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5775;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5775;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 bundle_id = 12;
uint32 bundle_id = 12;
}
message GroupLinkMarkUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5757;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5757;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
GroupLinkBundle bundle = 11;
GroupLinkBundle bundle = 11;
}