mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 16:39:26 +03:00
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: AEJMHCCJBEH
|
|
message ParkourLevelInfo {
|
|
Vector pos = 12;
|
|
uint32 open_time = 6;
|
|
uint32 best_record = 7;
|
|
bool is_open = 3;
|
|
}
|
|
|