mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
20 lines
356 B
Protocol Buffer
20 lines
356 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: DKPPBLIHEPO
|
|
// CmdId: 5643
|
|
message RegionSearchChangeRegionNotify {
|
|
// Name: GNEGOFIJCFA
|
|
enum RegionEvent {
|
|
REGION_EVENT_NONE = 0;
|
|
REGION_EVENT_ENTER = 1;
|
|
REGION_EVENT_LEAVE = 2;
|
|
}
|
|
|
|
uint32 region_id = 7;
|
|
RegionEvent event = 6;
|
|
}
|
|
|