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,20 @@
syntax = "proto3";
package proto;
option go_package = "/csproto";
message SCENE_COLLECTION {
string scene_name = 1;
string prefab_id = 2;
int32 count = 3;
repeated uint64 detail_obj_id_list = 4;
}
message SC_SCENE_COLLECTION_SYNC {
repeated SCENE_COLLECTION collection_list = 1;
}
message SC_SCENE_COLLECTION_MODIFY {
string scene_name = 1;
string prefab_id = 2;
int32 count = 3;
uint64 new_detail_obj_id = 4;
}