Files
S/proto/pb/cs_collection.proto
2026-02-02 21:19:34 +03:00

21 lines
450 B
Protocol Buffer

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;
}