mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-05 00:26:06 +03:00
10 lines
188 B
Protocol Buffer
10 lines
188 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message PlayerWorldSceneInfo {
|
|
uint32 scene_id = 1;
|
|
bool is_locked = 2;
|
|
repeated uint32 scene_tag_id_list = 3;
|
|
}
|