mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 17:29:26 +03:00
13 lines
224 B
Protocol Buffer
13 lines
224 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
import "HomeGroupPlayerInfo.proto";
|
||
|
|
||
|
message HomeStakePlayRecord {
|
||
|
uint32 timestamp = 10;
|
||
|
repeated HomeGroupPlayerInfo engagedPlayerInfoList = 5;
|
||
|
}
|