15 lines
244 B
Protocol Buffer
15 lines
244 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "Vector.proto";
|
||
|
|
||
|
// Name: AKBAFAOBLBO
|
||
|
message ParkourLevelInfo {
|
||
|
Vector pos = 12;
|
||
|
uint32 open_time = 4;
|
||
|
bool is_open = 3;
|
||
|
uint32 best_record = 7;
|
||
|
}
|
||
|
|