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
|
|
|
|
2024-06-23 20:46:20 +03:00
|
|
|
// 4.7.0
|
2022-11-06 15:30:21 +03:00
|
|
|
message PlayerWorldSceneInfo {
|
2024-06-23 20:46:20 +03:00
|
|
|
MapLayerInfo map_layer_info = 10;
|
|
|
|
uint32 scene_id = 12;
|
|
|
|
bool is_locked = 3;
|
|
|
|
repeated uint32 scene_tag_id_list = 6;
|
2024-05-23 21:57:06 +03:00
|
|
|
}
|