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

39
proto/pb/cs_bitset.proto Normal file
View File

@@ -0,0 +1,39 @@
syntax = "proto3";
package proto;
option go_package = "/csproto";
import "options.proto";
message SC_SYNC_ALL_BITSET {
repeated BITSET_DATA bitset = 1;
}
message BITSET_DATA {
int32 type = 1;
repeated uint64 value = 2;
}
message CS_BITSET_ADD {
int32 type = 1;
repeated uint32 value = 2;
}
message CS_BITSET_REMOVE_ALL {
int32 type = 1;
}
message CS_BITSET_REMOVE {
int32 type = 1;
repeated uint32 value = 2;
}
message SC_BITSET_ADD {
int32 type = 1;
repeated uint32 value = 2;
int32 source = 3;
}
message SC_BITSET_REMOVE {
int32 type = 1;
repeated uint32 value = 2;
int32 source = 3;
}
message SC_BITSET_REMOVE_ALL {
int32 type = 1;
int32 source = 2;
}