move proto to submodule
This commit is contained in:
19
proto/AvatarEquipChangeNotify.proto
Normal file → Executable file
19
proto/AvatarEquipChangeNotify.proto
Normal file → Executable file
@@ -2,14 +2,23 @@ syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "SceneReliquaryInfo.proto";
|
||||
import "SceneWeaponInfo.proto";
|
||||
import "SceneReliquaryInfo.proto";
|
||||
|
||||
message AvatarEquipChangeNotify {
|
||||
uint64 avatarGuid = 1;
|
||||
uint32 equipType = 2;
|
||||
uint32 itemId = 3;
|
||||
uint64 equipGuid = 4;
|
||||
enum CmdId {
|
||||
option allow_alias = true;
|
||||
ENET_CHANNEL_ID = 0;
|
||||
NONE = 0;
|
||||
ENET_IS_RELIABLE = 1;
|
||||
IS_ALLOW_CLIENT = 1;
|
||||
CMD_ID = 615;
|
||||
}
|
||||
|
||||
uint64 avatar_guid = 1;
|
||||
uint32 equip_type = 2;
|
||||
uint32 item_id = 3;
|
||||
uint64 equip_guid = 4;
|
||||
SceneWeaponInfo weapon = 5;
|
||||
SceneReliquaryInfo reliquary = 6;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user