Release 0.1.0

This commit is contained in:
xeon
2026-02-02 20:53:22 +03:00
commit 25660300dd
152 changed files with 882089 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
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;
}