mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-02-06 21:19:25 +03:00
15 lines
277 B
Protocol Buffer
15 lines
277 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "DungeonEnterPosInfo.proto";
|
|
|
|
// CmdId: 989
|
|
// Name: CJLIPEPDAHP
|
|
message PlayerEnterDungeonReq {
|
|
uint32 point_id = 12;
|
|
uint32 dungeon_id = 14;
|
|
DungeonEnterPosInfo enter_pos_info = 6;
|
|
}
|
|
|