mirror of
https://git.xeondev.com/LR/S.git
synced 2026-02-04 06:55:06 +01:00
Release 0.1.0
This commit is contained in:
20
proto/pb/cs_collection.proto
Normal file
20
proto/pb/cs_collection.proto
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user