mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 19:26:49 +00:00
eaf0dd0b3b
Expedition system has almost done but still has some bug so it will be uploaded later
13 lines
270 B
Protocol Buffer
13 lines
270 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
import "AvatarExpeditionState.proto";
|
|
|
|
message AvatarExpeditionInfo {
|
|
AvatarExpeditionState state = 1;
|
|
uint32 exp_id = 2;
|
|
uint32 hour_time = 3;
|
|
uint32 start_time = 4;
|
|
float shorten_ratio = 5;
|
|
}
|