mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
22 lines
365 B
Protocol Buffer
22 lines
365 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// CmdId: 134
|
|
// Name: AANJMLLAOLA
|
|
message RemoveRandTaskInfoNotify {
|
|
// Name: HIIPJHPPCOE
|
|
enum FinishReason {
|
|
DEFAULT = 0;
|
|
CLEAR = 1;
|
|
DISTANCE = 2;
|
|
FINISH = 3;
|
|
}
|
|
|
|
uint32 rand_task_id = 4;
|
|
bool is_succ = 11;
|
|
FinishReason reason = 8;
|
|
}
|
|
|