mirror of
https://github.com/Walter-Sparrow/lunar-tear.git
synced 2026-07-02 05:43:41 +03:00
32 lines
826 B
Protocol Buffer
32 lines
826 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "lunar-tear/server/gen/proto;proto";
|
|
|
|
import "google/protobuf/empty.proto";
|
|
import "proto/data.proto";
|
|
|
|
package apb.api.portalcage;
|
|
|
|
service PortalCageService {
|
|
rpc UpdatePortalCageSceneProgress (UpdatePortalCageSceneProgressRequest) returns (UpdatePortalCageSceneProgressResponse);
|
|
rpc GetDropItem (google.protobuf.Empty) returns (GetDropItemResponse);
|
|
}
|
|
|
|
message UpdatePortalCageSceneProgressRequest {
|
|
int32 portalCageSceneId = 1;
|
|
}
|
|
|
|
message UpdatePortalCageSceneProgressResponse {
|
|
map<string, apb.api.data.DiffData> diffUserData = 99;
|
|
}
|
|
|
|
message GetDropItemResponse {
|
|
repeated PortalCageDropItem portalCageDropItem = 1;
|
|
map<string, apb.api.data.DiffData> diffUserData = 99;
|
|
}
|
|
|
|
message PortalCageDropItem {
|
|
int32 possessionType = 1;
|
|
int32 possessionId = 2;
|
|
int32 count = 3;
|
|
} |