mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-02-06 04:33:04 +08:00
11 lines
176 B
Protocol Buffer
11 lines
176 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "HeadImage.proto";
|
||
|
|
||
|
message SetPlayerHeadImageRsp {
|
||
|
int32 retcode = 1;
|
||
|
HeadImage avatar = 3;
|
||
|
}
|