GC-Proto/proto/SceneCreateEntityRsp.proto
2023-02-28 09:12:44 +08:00

15 lines
258 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "CreateEntityInfo.proto";
// Name: ODFLOPBLBPM
// CmdId: 270
message SceneCreateEntityRsp {
int32 retcode = 10;
uint32 entity_id = 4;
CreateEntityInfo entity = 5;
}