mirror of
https://git.xeondev.com/LR/S.git
synced 2026-02-04 15:05:17 +01:00
26 lines
445 B
Protocol Buffer
26 lines
445 B
Protocol Buffer
syntax = "proto3";
|
|
package proto;
|
|
|
|
option go_package = "/csproto";
|
|
|
|
message CS_STAT_REQ_INC_STAT {
|
|
int32 type = 1;
|
|
int32 param = 2;
|
|
}
|
|
message CS_STAT_REQ_SET_STAT {
|
|
int32 type = 1;
|
|
int32 param = 2;
|
|
uint32 value = 3;
|
|
}
|
|
message STAT_INFO {
|
|
int32 type = 1;
|
|
uint32 value = 2;
|
|
int32 param = 3;
|
|
}
|
|
message SC_SYNC_ALL_STAT {
|
|
repeated STAT_INFO stats_info = 1;
|
|
}
|
|
message SC_SYNC_STAT {
|
|
STAT_INFO stat_info = 1;
|
|
}
|