GC-Proto/proto/PlayerWorldSceneInfo.proto

12 lines
260 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2024-05-23 21:57:06 +03:00
2023-08-24 01:25:36 +03:00
import "MapLayerInfo.proto";
2024-05-23 21:57:06 +03:00
// 4.6.0
2022-11-06 15:30:21 +03:00
message PlayerWorldSceneInfo {
2024-05-23 21:57:06 +03:00
MapLayerInfo map_layer_info = 4;
bool is_locked = 7;
repeated uint32 scene_tag_id_list = 9;
uint32 scene_id = 13;
}