mirror of
https://git.xeondev.com/LR/S.git
synced 2026-02-04 15:05:17 +01:00
21 lines
450 B
Protocol Buffer
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;
|
|
}
|