GC-Proto/proto/RegionSearch.proto

15 lines
270 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "RegionSearchState.proto";
2023-02-28 04:12:44 +03:00
// Name: AIOFHFPBCHH
2023-02-18 04:48:44 +03:00
message RegionSearch {
2023-02-28 04:12:44 +03:00
bool is_entered = 8;
RegionSearchState state = 9;
uint32 progress = 2;
uint32 region_search_id = 3;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00