mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-08 10:06:07 +03:00
20 lines
357 B
Protocol Buffer
20 lines
357 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// CmdId: 5616
|
|
// Name: CDKILDCCGII
|
|
message RegionSearchChangeRegionNotify {
|
|
// Name: PMMIIFMHPDP
|
|
enum RegionEvent {
|
|
REGION_EVENT_NONE = 0;
|
|
REGION_EVENT_ENTER = 1;
|
|
REGION_EVENT_LEAVE = 2;
|
|
}
|
|
|
|
uint32 region_id = 13;
|
|
RegionEvent event = 1;
|
|
}
|
|
|