GC-Proto/proto/EnterCustomDungeonReq.proto

15 lines
282 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "EnterCustomDungeonType.proto";
2023-02-28 04:12:44 +03:00
// Name: MNMCGIADIEN
// CmdId: 6248
2023-02-18 04:48:44 +03:00
message EnterCustomDungeonReq {
2023-02-28 04:12:44 +03:00
uint64 dungeon_guid = 3;
uint32 dungeon_id = 2;
EnterCustomDungeonType enter_type = 6;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00