mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 08:49:26 +03:00
10 lines
223 B
Protocol Buffer
10 lines
223 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
import "Uint32Pair.proto";
|
|
|
|
message DungeonEntryInfoReq {
|
|
repeated Uint32Pair scene_point_id_list = 6;
|
|
uint32 scene_id = 7;
|
|
uint32 point_id = 4;
|
|
}
|