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

19
proto/pb/cs_wiki.proto Normal file
View File

@@ -0,0 +1,19 @@
syntax = "proto3";
package proto;
option go_package = "/csproto";
enum WIKI_PIN_ENUM {
WIKI_PIN_ENUM_NONE = 0;
WIKI_PIN_ENUM_FORMULA = 1;
WIKI_PIN_ENUM_BUILDING = 2;
}
message SC_SYNC_ALL_WIKI {
repeated uint32 latest_unlock = 1;
}
message CS_UNLOCK_WIKI {
uint32 wiki_id = 1;
}
message CS_MARK_WIKI_READ {
repeated uint32 wiki_ids = 1;
}