mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
16 lines
338 B
Protocol Buffer
16 lines
338 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ToTheMoonObstacleInfo.proto";
|
|
|
|
// CmdId: 6163
|
|
// Name: AOEDIDDNEHH
|
|
message ToTheMoonObstaclesModifyNotify {
|
|
repeated ToTheMoonObstacleInfo add_obstacles = 8;
|
|
uint32 scene_id = 15;
|
|
repeated int32 remove_obstacle_ids = 7;
|
|
bool use_edge = 2;
|
|
}
|
|
|