mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 08:49:26 +03:00
16 lines
260 B
Protocol Buffer
16 lines
260 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
// Name: IECLMFCIPAE
|
|
message PhotoPosData {
|
|
bool is_view = 4;
|
|
uint32 open_time = 13;
|
|
Vector center = 8;
|
|
uint32 pos_id = 5;
|
|
bool is_open = 6;
|
|
}
|
|
|