GC-Proto/proto/QuestCreateEntityReq.proto

13 lines
275 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
import "CreateEntityInfo.proto";
2024-07-08 14:40:31 +03:00
// 4.7.0
// CmdId: 28703
// Obf: ?
2022-11-06 15:30:21 +03:00
message QuestCreateEntityReq {
2024-07-08 14:40:31 +03:00
uint32 quest_id = 2;
uint32 parent_quest_id = 15;
bool is_rewind = 5;
CreateEntityInfo entity = 14;
2022-11-06 15:30:21 +03:00
}