mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 13:37:42 +00:00
27e817a6ce
It's being perfected, so don't worry. (probably)
18 lines
268 B
Protocol Buffer
18 lines
268 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
message WidgetDoBagRsp {
|
|
enum CmdId {
|
|
option allow_alias = true;
|
|
NONE = 0;
|
|
ENET_CHANNEL_ID = 0;
|
|
ENET_IS_RELIABLE = 1;
|
|
CMD_ID = 4270;
|
|
}
|
|
|
|
int32 retcode = 1;
|
|
uint32 material_id = 2;
|
|
}
|